From 3ef6cf2cdeb757935fb0f8e4e5b9b0779341cf09 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Mon, 27 Feb 2023 17:19:12 +0000 Subject: [PATCH] Fix xmldoc for decimal.Sqrt --- X10D/src/Math/DecimalExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/X10D/src/Math/DecimalExtensions.cs b/X10D/src/Math/DecimalExtensions.cs index dcd6781..094d4ef 100644 --- a/X10D/src/Math/DecimalExtensions.cs +++ b/X10D/src/Math/DecimalExtensions.cs @@ -1,4 +1,4 @@ -using System.Diagnostics.Contracts; +using System.Diagnostics.Contracts; using System.Numerics; using System.Runtime.CompilerServices; @@ -133,7 +133,7 @@ public static class DecimalExtensions } /// - /// Returns the square root of this double-precision floating-point number. + /// Returns the square root of this decimal number. /// /// The number whose square root is to be found. ///