From ad97a127d91c53080265794c7a57e0faee4d7c2d Mon Sep 17 00:00:00 2001 From: =?utf8?q?=40=E5=A4=A7=E7=88=B7=E6=98=AF=E4=B8=AA=E7=A0=81=E5=86=9C?= Date: Wed, 25 Dec 2019 23:42:46 +0800 Subject: [PATCH] fix typo in Hashtable.cs (#1151) --- .../System.Private.CoreLib/src/System/Collections/Hashtable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. // -- 2.7.4