Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsSoilLayerDataTable.cs
===================================================================
diff -u -ra55213880414ace4d70b5755ee12783dec33f9b3 -rd9005dfa3b398d70ada0cf03cf408f8bcfc384db
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsSoilLayerDataTable.cs (.../MacroStabilityInwardsSoilLayerDataTable.cs) (revision a55213880414ace4d70b5755ee12783dec33f9b3)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsSoilLayerDataTable.cs (.../MacroStabilityInwardsSoilLayerDataTable.cs) (revision d9005dfa3b398d70ada0cf03cf408f8bcfc384db)
@@ -28,7 +28,7 @@
namespace Ringtoets.MacroStabilityInwards.Forms.Views
{
///
- /// This class defines a table in which properties of instances
+ /// This class defines a table in which properties of instances
/// are shown as rows.
///
public class MacroStabilityInwardsSoilLayerDataTable : DataGridViewControl
@@ -46,11 +46,11 @@
/// are shown in the table.
///
/// The collection of layer data to show.
- public void SetData(IEnumerable layerData)
+ public void SetData(IEnumerable layerData)
{
if (layerData != null)
{
- IEnumerable macroStabilityInwardsSoilLayerData = layerData.ToArray();
+ IEnumerable macroStabilityInwardsSoilLayerData = layerData.ToArray();
int layerIndex = macroStabilityInwardsSoilLayerData.Count();
SetDataSource(macroStabilityInwardsSoilLayerData.Select(soilLayerData => new MacroStabilityInwardsFormattedSoilLayerDataRow(soilLayerData, layerIndex--)).ToArray());
}