Index: Ringtoets/Common/src/Ringtoets.Common.Service/ValidationRules/ValidationRule.cs
===================================================================
diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -re2892835ceb1c916be9a9122ba372858f20b981a
--- Ringtoets/Common/src/Ringtoets.Common.Service/ValidationRules/ValidationRule.cs (.../ValidationRule.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1)
+++ Ringtoets/Common/src/Ringtoets.Common.Service/ValidationRules/ValidationRule.cs (.../ValidationRule.cs) (revision e2892835ceb1c916be9a9122ba372858f20b981a)
@@ -39,7 +39,7 @@
/// Checks if a value is NaN or Infinity.
///
/// The value which needs to be checked.
- /// Trueif is not a concrete number, false if otherwise.
+ /// trueif is not a concrete number, false if otherwise.
protected static bool IsNotConcreteNumber(double value)
{
return double.IsNaN(value) || double.IsInfinity(value);