Skip to content

Commit ad97a12

Browse files
sunthxjkotas
authored andcommitted
fix typo in Hashtable.cs (dotnet#1151)
1 parent f77914d commit ad97a12

File tree

1 file changed

+1
-1
lines changed
  • src/libraries/System.Private.CoreLib/src/System/Collections

1 file changed

+1
-1
lines changed

src/libraries/System.Private.CoreLib/src/System/Collections/Hashtable.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ public virtual object? this[object key]
662662
// in the same bucket. So in the reader we need to check if the hash table is modified during above steps.
663663
//
664664
// Writers (Insert, Remove, Clear) will set 'isWriterInProgress' flag before it starts modifying
665-
// the hashtable and will ckear the flag when it is done. When the flag is cleared, the 'version'
665+
// the hashtable and will clear the flag when it is done. When the flag is cleared, the 'version'
666666
// will be increased. We will repeat the reading if a writer is in progress or done with the modification
667667
// during the read.
668668
//

0 commit comments

Comments
 (0)