Int32: Fixed double space in comments for Parse (#79897)
authorNash Barden <84361481+nashjb@users.noreply.github.com>
Thu, 22 Dec 2022 08:37:19 +0000 (19:37 +1100)
committerGitHub <noreply@github.com>
Thu, 22 Dec 2022 08:37:19 +0000 (09:37 +0100)
Co-authored-by: Nash Barden <nash.barden@tribetech.com.au>
src/libraries/System.Private.CoreLib/src/System/Int32.cs

index 5c701e0fca22ebe035b8931fc5c5346a468c0991..07c07bfa6bc5909a713484d15496544ebeb46665 100644 (file)
@@ -141,7 +141,7 @@ namespace System
             return Number.ParseInt32(s, style, NumberFormatInfo.CurrentInfo);
         }
 
-        // Parses an integer from a String in the given style.  If
+        // Parses an integer from a String in the given style. If
         // a NumberFormatInfo isn't specified, the current culture's
         // NumberFormatInfo is assumed.
         //
@@ -151,7 +151,7 @@ namespace System
             return Number.ParseInt32(s, NumberStyles.Integer, NumberFormatInfo.GetInstance(provider));
         }
 
-        // Parses an integer from a String in the given style.  If
+        // Parses an integer from a String in the given style. If
         // a NumberFormatInfo isn't specified, the current culture's
         // NumberFormatInfo is assumed.
         //