From b1ea4ca2fb637619829e791c59f426b7e2b38903 Mon Sep 17 00:00:00 2001 From: lipchev Date: Sun, 16 Aug 2026 14:14:22 +0300 Subject: [PATCH] Fix QuantityValue number comments --- UnitsNet/CustomCode/Value/QuantityValue.Number.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)