Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/Builders/SoilLayer2D.cs
===================================================================
diff -u -rdd7a5cfb0343fa2350b4143232b94cbba37612e9 -ra3c8c0cb4384de51a18d77cc7bea487f97ba21e1
--- Ringtoets/Piping/src/Ringtoets.Piping.IO/Builders/SoilLayer2D.cs (.../SoilLayer2D.cs) (revision dd7a5cfb0343fa2350b4143232b94cbba37612e9)
+++ Ringtoets/Piping/src/Ringtoets.Piping.IO/Builders/SoilLayer2D.cs (.../SoilLayer2D.cs) (revision a3c8c0cb4384de51a18d77cc7bea487f97ba21e1)
@@ -31,8 +31,9 @@
namespace Ringtoets.Piping.IO.Builders
{
///
- /// This class represents objects which were imported from a DSoilModel database. Instances of this class are transient and are not to be used
- /// once the DSoilModel database has been imported.
+ /// This class represents objects which were imported from a DSoilModel database.
+ /// Instances of this class are transient and are not to be used once the DSoilModel
+ /// database has been imported.
///
internal class SoilLayer2D
{
@@ -228,7 +229,7 @@
{
var first = orderedHeights[i];
var second = orderedHeights[i + 1];
- result.Add(new Tuple(first, second));
+ result.Add(Tuple.Create(first, second));
}
return result;
}
@@ -237,7 +238,7 @@
/// Gets a of heights where the intersects the
/// vertical line at .
///
- /// The of which together create a loop.
+ /// The sequence of which together create a loop.
/// The point on the x-axis where the vertical line is constructed do determine intersections with.
/// A of , representing the height at which the
/// intersects the vertical line at .