Skip to content

Commit b683032

Browse files
authored
Fix minor type in inline comments in Decimal.cs (#58694)
Fixed 3 instances of a minor typo in comments in the Decimal.cs class
1 parent 9a26fb9 commit b683032

File tree

1 file changed

+2
-2
lines changed
  • src/libraries/System.Private.CoreLib/src/System

1 file changed

+2
-2
lines changed

src/libraries/System.Private.CoreLib/src/System/Decimal.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace System
3131
//
3232
// The Decimal class implements widening conversions from the
3333
// ubyte, char, short, int, and long types
34-
// to Decimal. These widening conversions never loose any information
34+
// to Decimal. These widening conversions never lose any information
3535
// and never throw exceptions. The Decimal class also implements
3636
// narrowing conversions from Decimal to ubyte, char,
3737
// short, int, and long. These narrowing conversions round
@@ -49,7 +49,7 @@ namespace System
4949
//
5050
// The Decimal class provides narrowing conversions to and from the
5151
// float and double types. A conversion from Decimal to
52-
// float or double may loose precision, but will not loose
52+
// float or double may lose precision, but will not lose
5353
// information about the overall magnitude of the numeric value, and will never
5454
// throw an exception. A conversion from float or double to
5555
// Decimal throws an OverflowException if the value is not within

0 commit comments

Comments
 (0)