From d8bd0a0ee39151fb84c57b005a0c131976c968d2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Jun 2025 06:59:08 +0000 Subject: [PATCH 1/2] Initial plan for issue From c113631a4fd6d9e59800ed538c90c42dec41ffb7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Jun 2025 07:03:05 +0000 Subject: [PATCH 2/2] Fix INumber.Sign documentation to correctly state return value for zero Co-authored-by: jeffhandley <1031940+jeffhandley@users.noreply.github.com> --- xml/System.Numerics/INumber`1.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml/System.Numerics/INumber`1.xml b/xml/System.Numerics/INumber`1.xml index db2dd6ff0be..9a1161159f8 100644 --- a/xml/System.Numerics/INumber`1.xml +++ b/xml/System.Numerics/INumber`1.xml @@ -438,7 +438,7 @@ For this method matches the IEEE 754:2 The value whose sign is to be computed. Computes the sign of a value. - A positive value if is positive, if is zero, and a negative value if is negative. + A positive value if is positive, 0 if is zero, and a negative value if is negative.