Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/DikeProfile.cs =================================================================== diff -u -r39496fd42e53a9fb20fec4f2a1b4dcdfadcaea3d -ra520ed551c5eecc830c54d4373f1efc82c64cb5f --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/DikeProfile.cs (.../DikeProfile.cs) (revision 39496fd42e53a9fb20fec4f2a1b4dcdfadcaea3d) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/DikeProfile.cs (.../DikeProfile.cs) (revision a520ed551c5eecc830c54d4373f1efc82c64cb5f) @@ -54,7 +54,7 @@ } SetGeometry(dikeGeometry); - SetForshoreGeometry(foreshoreGeometry); + SetForeshoreGeometry(foreshoreGeometry); orientation = new RoundedDouble(2); dikeHeight = new RoundedDouble(2); @@ -167,16 +167,16 @@ DikeGeometry = points.ToArray(); } - private void SetForshoreGeometry(IEnumerable points) + private void SetForeshoreGeometry(IEnumerable points) { if (points == null) { - throw new ArgumentNullException("points", Resources.DikeProfile_SetForshoreGeometry_Collection_of_points_for_foreshore_geometry_is_null); + throw new ArgumentNullException("points", Resources.DikeProfile_SetForeshoreGeometry_Collection_of_points_for_foreshore_geometry_is_null); } if (points.Any(p => p == null)) { - throw new ArgumentException(Resources.DikeProfile_SetForshoreGeometry_A_point_in_the_collection_is_null); + throw new ArgumentException(Resources.DikeProfile_SetForeshoreGeometry_A_point_in_the_collection_is_null); } ForeshoreGeometry = points.ToArray();