Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs =================================================================== diff -u -r898d42ca6354285169751f4de231f96f40b1f6f9 -r2fa096726e41140ee4bfa477b5d23f3fc9ed4f65 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision 898d42ca6354285169751f4de231f96f40b1f6f9) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresInput.cs (.../HeightStructuresInput.cs) (revision 2fa096726e41140ee4bfa477b5d23f3fc9ed4f65) @@ -34,8 +34,8 @@ { private const int deviationWaveDirectionNumberOfDecimals = 2; - private static readonly Range deviationWaveDirectionValidityRage = new Range(new RoundedDouble(deviationWaveDirectionNumberOfDecimals, -360), - new RoundedDouble(deviationWaveDirectionNumberOfDecimals, 360)); + private static readonly Range deviationWaveDirectionValidityRange = new Range(new RoundedDouble(deviationWaveDirectionNumberOfDecimals, -360), + new RoundedDouble(deviationWaveDirectionNumberOfDecimals, 360)); private NormalDistribution levelCrestStructure; private RoundedDouble deviationWaveDirection; @@ -66,10 +66,10 @@ set { RoundedDouble newDeviationWaveDirection = value.ToPrecision(deviationWaveDirection.NumberOfDecimalPlaces); - if (!double.IsNaN(newDeviationWaveDirection) && !deviationWaveDirectionValidityRage.InRange(newDeviationWaveDirection)) + if (!double.IsNaN(newDeviationWaveDirection) && !deviationWaveDirectionValidityRange.InRange(newDeviationWaveDirection)) { throw new ArgumentOutOfRangeException(nameof(value), string.Format(RingtoetsCommonDataResources.DeviationWaveDirection_Value_needs_to_be_in_Range_0_, - deviationWaveDirectionValidityRage)); + deviationWaveDirectionValidityRange)); } deviationWaveDirection = newDeviationWaveDirection; }