Index: DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/SurfaceLine2.cs =================================================================== diff -u -r6087 -r6106 --- DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/SurfaceLine2.cs (.../SurfaceLine2.cs) (revision 6087) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/SurfaceLine2.cs (.../SurfaceLine2.cs) (revision 6106) @@ -169,8 +169,8 @@ /// /// The start x. /// The end x. - /// collection of points between start X and end X (inlcuding those) - /// End value is smaller then the start value + /// collection of points between start X and end X (including those) + /// End value is smaller than the start value public virtual IEnumerable GetPointSegmentIncluding(double startX, double endX) { if (endX < startX) @@ -185,7 +185,7 @@ } /// - /// Validates this surfaceline. + /// Validates this surface line. /// /// All validation messages. [Validate] @@ -317,21 +317,21 @@ { foreach (KeyValuePair annotation in geometryAnnotations) { - AddCharacteristicPoint((Point2D) annotation.Key.Clone(), annotation.Value); + AddCharacteristicPoint(annotation.Key.Clone(), annotation.Value); } } } /// - /// Collapses all characteristic point annotations in the given surfaceline into - /// a dictionary keyed on instances in that surfaceline + /// Collapses all characteristic point annotations in the given surface line into + /// a dictionary keyed on instances in that surface line /// and their annotations. /// /// The referenced surfaceline. /// True if should be a clone from /// .; false if it should /// take the same instance instead. - /// Dictionary keyed on instances in the surfaceline + /// Dictionary keyed on instances in the surface line /// that have annotations. private Dictionary GetCharacteristicAnnotationsInSource(SurfaceLine2 source, bool cloneGeometry) { @@ -344,11 +344,11 @@ /// Handlers return value in case /// is true. /// - /// The referenced surfaceline. + /// The referenced surface line. /// True if should be a clone from /// .; false if it should /// take the same instance instead. - /// Dictionary keyed on instances in the surfaceline + /// Dictionary keyed on instances in the surface line /// that have annotations. private Dictionary GetCharacteristicAnnotationsInSource_GeometryMustContainPoints(SurfaceLine2 source, bool cloneGeometry) { @@ -369,8 +369,8 @@ /// Handles return value in case /// is false. /// - /// The referenced surfaceline. - /// Dictionary keyed on instances in the surfaceline + /// The referenced surface line. + /// Dictionary keyed on instances in the surface line /// that have annotations. private static Dictionary GetCharacteristicAnnotationsInSource_GeometryMustNotContainPoints(SurfaceLine2 source) {