Skip to content

Commit 899e9ea

Browse files
committed
Fix a Sandcastle warning.
1 parent 413b8e3 commit 899e9ea

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/MongoDB.Bson/ObjectModel/Decimal128.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -625,10 +625,11 @@ public static ulong GetSignificandLowBits(Decimal128 d)
625625
public static bool IsSNaN(Decimal128 d) => Flags.IsSNaN(d._highBits);
626626

627627
/// <summary>
628-
/// Gets a value indicating whether this instance is zero.
628+
/// Returns a value indicating whether the specified number is zero.
629629
/// </summary>
630+
/// <param name="d">A 128-bit decimal.</param>
630631
/// <returns>
631-
/// <c>true</c> if this instance is zero; otherwise, <c>false</c>.
632+
/// <c>true</c> if the specified number is zero; otherwise, <c>false</c>.
632633
/// </returns>
633634
public static bool IsZero(Decimal128 d)
634635
{

0 commit comments

Comments
 (0)