Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/PipingCalculationConfigurationHelper.cs
===================================================================
diff -u -r022f34b88de641b0b3b263b8eef61f57980f7891 -r4017868c654334a4acf2cf3d4abd21358f4c38aa
--- Ringtoets/Piping/src/Ringtoets.Piping.Forms/PipingCalculationConfigurationHelper.cs (.../PipingCalculationConfigurationHelper.cs) (revision 022f34b88de641b0b3b263b8eef61f57980f7891)
+++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/PipingCalculationConfigurationHelper.cs (.../PipingCalculationConfigurationHelper.cs) (revision 4017868c654334a4acf2cf3d4abd21358f4c38aa)
@@ -116,7 +116,7 @@
///
/// Gets the sorted selectable hydraulic boundary locations from .
///
- /// The available hydraulic boudnary locations.
+ /// The available hydraulic boundary locations.
/// The reference point to which the distance needs to be
/// calculated in .
/// An ordered list of selectable hydraulic boundary locations.
@@ -127,8 +127,8 @@
? surfaceLine.ReferenceLineIntersectionWorldPoint
: null;
return hydraulicBoundaryLocations.Select(hbl => new SelectableHydraulicBoundaryLocation(hbl, referencePoint))
- .OrderBy(hbl => hbl.Distance)
- .ThenBy(hbl => hbl.HydraulicBoundaryLocation.Id);
+ .OrderBy(hbl => hbl.Distance)
+ .ThenBy(hbl => hbl.HydraulicBoundaryLocation.Id);
}
private static CalculationGroup CreateCalculationGroup(RingtoetsPipingSurfaceLine surfaceLine, IEnumerable soilModels, GeneralPipingInput generalInput)