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

index 5977603..3fc7c70 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 IEnumeartors, etc.
+            // minimize allocations of IEnumertors, etc.
             //
             Dictionary<IAsyncLocal, object> newValues = new Dictionary<IAsyncLocal, object>(current.m_localValues.Count + (hadPreviousValue ? 0 : 1));