Skip to content

Commit 48e7418

Browse files
nashjbNash Barden
and
Nash Barden
authored
Int32: Fixed double space in comments for Parse (#79897)
Co-authored-by: Nash Barden <nash.barden@tribetech.com.au>
1 parent f85d515 commit 48e7418

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/Int32.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public static int Parse(string s, NumberStyles style)
141141
return Number.ParseInt32(s, style, NumberFormatInfo.CurrentInfo);
142142
}
143143

144-
// Parses an integer from a String in the given style. If
144+
// Parses an integer from a String in the given style. If
145145
// a NumberFormatInfo isn't specified, the current culture's
146146
// NumberFormatInfo is assumed.
147147
//
@@ -151,7 +151,7 @@ public static int Parse(string s, IFormatProvider? provider)
151151
return Number.ParseInt32(s, NumberStyles.Integer, NumberFormatInfo.GetInstance(provider));
152152
}
153153

154-
// Parses an integer from a String in the given style. If
154+
// Parses an integer from a String in the given style. If
155155
// a NumberFormatInfo isn't specified, the current culture's
156156
// NumberFormatInfo is assumed.
157157
//

0 commit comments

Comments
 (0)