Fix typo in my previous typo fix.
authorEric Eilebrecht <ericeil@hotmail.com>
Sat, 26 Sep 2015 00:02:52 +0000 (17:02 -0700)
committerEric Eilebrecht <ericeil@hotmail.com>
Sat, 26 Sep 2015 00:02:52 +0000 (17:02 -0700)
src/mscorlib/src/System/Threading/ExecutionContext.cs

index 3fc7c70..f69fd41 100644 (file)
@@ -193,7 +193,7 @@ namespace System.Threading
 
             //
             // Allocate a new Dictionary containing a copy of the old values, plus the new value.  We have to do this manually to 
-            // minimize allocations of IEnumertors, etc.
+            // minimize allocations of IEnumerators, etc.
             //
             Dictionary<IAsyncLocal, object> newValues = new Dictionary<IAsyncLocal, object>(current.m_localValues.Count + (hadPreviousValue ? 0 : 1));