Index: Ringtoets/Common/src/Ringtoets.Common.Utils/AssignUnassignCalculations.cs
===================================================================
diff -u -r38600213ce6ca43c1819c81dd95c8ce786650ac3 -rb032df1f10d8f90d59289622f6827f3ac3cb5376
--- Ringtoets/Common/src/Ringtoets.Common.Utils/AssignUnassignCalculations.cs (.../AssignUnassignCalculations.cs) (revision 38600213ce6ca43c1819c81dd95c8ce786650ac3)
+++ Ringtoets/Common/src/Ringtoets.Common.Utils/AssignUnassignCalculations.cs (.../AssignUnassignCalculations.cs) (revision b032df1f10d8f90d59289622f6827f3ac3cb5376)
@@ -41,8 +41,8 @@
/// information about assigning calculations to sections.
/// The which's location is used to match with the
/// location of the section.
- /// When any input parameter is null.
- /// When contains a null element.
+ /// Thrown when any input parameter is null.
+ /// Thrown when contains a null element.
public static void Update(IEnumerable sectionResults, CalculationWithLocation calculation)
{
ValidateSectionResults(sectionResults);
@@ -65,8 +65,8 @@
/// information about assigning calculations to sections.
/// The that was removed.
/// All the remaining calculations after deletion of the .
- /// When any input parameter is null.
- /// When or
+ /// Thrown when any input parameter is null.
+ /// Thrown when or
/// contains a null element.
public static void Delete(
IEnumerable sectionResults,
@@ -94,8 +94,8 @@
/// A containing a
/// of objects
/// for each section name which has calculations.
- /// When any input parameter is null.
- /// When or
+ /// Thrown when any input parameter is null.
+ /// Thrown when or
/// contains a null element.
public static Dictionary> CollectCalculationsPerSection(
IEnumerable sections,
@@ -128,8 +128,9 @@
/// whose are considered.
/// The .
/// The containing , or null.
- /// When any input parameter is null or when
+ /// Thrown when any input parameter is null or when
/// an element in is null.
+ /// Thrown when contains a null element.
public static FailureMechanismSection FailureMechanismSectionForCalculation(
IEnumerable sections,
CalculationWithLocation calculation)