From: Robin van der Vliet Date: Tue, 15 Jun 2021 14:01:01 +0000 (+0200) Subject: Fix typos (#54216) X-Git-Tag: submit/tizen/20210909.063632~765 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8f027af7e9f36a2e67d7cc544ea2f8756a17c6bd;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix typos (#54216) --- diff --git a/src/libraries/System.Private.CoreLib/src/System/Int32.cs b/src/libraries/System.Private.CoreLib/src/System/Int32.cs index 14822ba..3c46f51 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Int32.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Int32.cs @@ -143,7 +143,7 @@ namespace System } // Parses an integer from a String. Returns false rather - // than throwing exceptin if input is invalid + // than throwing an exception if input is invalid. // public static bool TryParse([NotNullWhen(true)] string? s, out int result) { @@ -162,7 +162,7 @@ namespace System } // Parses an integer from a String in the given style. Returns false rather - // than throwing exceptin if input is invalid + // than throwing an exception if input is invalid. // public static bool TryParse([NotNullWhen(true)] string? s, NumberStyles style, IFormatProvider? provider, out int result) {