Index: Ringtoets/Common/src/Ringtoets.Common.Service/ValidationRules/ValidationRule.cs =================================================================== diff -u -rcfe7c2c39dcb9e0a25af2908650c7191a733f4e2 -r7259f846cac0ed1569ee22d9788ca7c2f3ca6445 --- Ringtoets/Common/src/Ringtoets.Common.Service/ValidationRules/ValidationRule.cs (.../ValidationRule.cs) (revision cfe7c2c39dcb9e0a25af2908650c7191a733f4e2) +++ Ringtoets/Common/src/Ringtoets.Common.Service/ValidationRules/ValidationRule.cs (.../ValidationRule.cs) (revision 7259f846cac0ed1569ee22d9788ca7c2f3ca6445) @@ -40,7 +40,7 @@ /// /// The value which needs to be checked. /// Trueif is invalid, false if otherwise. - protected static bool IsInValidNumber(RoundedDouble value) + protected static bool IsInvalidNumber(RoundedDouble value) { return double.IsNaN(value) || double.IsInfinity(value); }