diff --git a/UnitsNet/CustomCode/Value/QuantityValue.Number.cs b/UnitsNet/CustomCode/Value/QuantityValue.Number.cs
index d78047a0a8..c3f29b4cfa 100644
--- a/UnitsNet/CustomCode/Value/QuantityValue.Number.cs
+++ b/UnitsNet/CustomCode/Value/QuantityValue.Number.cs
@@ -292,10 +292,10 @@ public static bool IsNaN(QuantityValue value)
return value.Denominator.IsZero && value.Numerator.IsZero;
}
- /// Determines if a value represents a negative real number.
+ /// Determines if a value represents a negative number.
/// The value to be checked.
///
- /// if represents negative zero or a negative real number; otherwise,
+ /// if represents a negative number; otherwise,
/// .
///
public static bool IsNegative(QuantityValue value)
@@ -336,10 +336,10 @@ public static bool IsOddInteger(QuantityValue value)
return remainder.IsZero && !quotient.IsEven;
}
- /// Determines if a value represents zero or a positive real number.
+ /// Determines if a value represents a positive number.
/// The value to be checked.
///
- /// if represents (positive) zero or a positive real number;
+ /// if represents a positive number;
/// otherwise, .
///
public static bool IsPositive(QuantityValue value)