fix typo in Hashtable.cs (#1151)
author@大爷是个码农 <sunth0101@126.com>
Wed, 25 Dec 2019 15:42:46 +0000 (23:42 +0800)
committerJan Kotas <jkotas@microsoft.com>
Wed, 25 Dec 2019 15:42:46 +0000 (07:42 -0800)
src/libraries/System.Private.CoreLib/src/System/Collections/Hashtable.cs

index 7d10ecd..e90c277 100644 (file)
@@ -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.
                     //