From: @大爷是个码农 Date: Wed, 25 Dec 2019 15:42:46 +0000 (+0800) Subject: fix typo in Hashtable.cs (#1151) X-Git-Tag: submit/tizen/20210909.063632~10616 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad97a127d91c53080265794c7a57e0faee4d7c2d;p=platform%2Fupstream%2Fdotnet%2Fruntime.git fix typo in Hashtable.cs (#1151) --- diff --git a/src/libraries/System.Private.CoreLib/src/System/Collections/Hashtable.cs b/src/libraries/System.Private.CoreLib/src/System/Collections/Hashtable.cs index 7d10ecd..e90c277 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Collections/Hashtable.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Collections/Hashtable.cs @@ -662,7 +662,7 @@ namespace System.Collections // in the same bucket. So in the reader we need to check if the hash table is modified during above steps. // // Writers (Insert, Remove, Clear) will set 'isWriterInProgress' flag before it starts modifying - // the hashtable and will ckear the flag when it is done. When the flag is cleared, the 'version' + // the hashtable and will clear the flag when it is done. When the flag is cleared, the 'version' // will be increased. We will repeat the reading if a writer is in progress or done with the modification // during the read. //