summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBar Arnon <i3arnon@gmail.com>2017-06-03 00:24:29 +0300
committerJan Kotas <jkotas@microsoft.com>2017-06-02 14:24:29 -0700
commit0e6407b7a3b89c33bb05882f4b59c99769425fc4 (patch)
tree730cafe286f755ed2eb7d8968d0c552587b00247
parentf7ce37729328d4f1061bd8bb52e3eecb0e49486c (diff)
downloadcoreclr-0e6407b7a3b89c33bb05882f4b59c99769425fc4.tar.gz
coreclr-0e6407b7a3b89c33bb05882f4b59c99769425fc4.tar.bz2
coreclr-0e6407b7a3b89c33bb05882f4b59c99769425fc4.zip
Tiny typo in TaskCompletionSource xml comment (#12066)
-rw-r--r--src/mscorlib/src/System/Threading/Tasks/TaskCompletionSource.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mscorlib/src/System/Threading/Tasks/TaskCompletionSource.cs b/src/mscorlib/src/System/Threading/Tasks/TaskCompletionSource.cs
index 0c80afd22c..47a51a45f5 100644
--- a/src/mscorlib/src/System/Threading/Tasks/TaskCompletionSource.cs
+++ b/src/mscorlib/src/System/Threading/Tasks/TaskCompletionSource.cs
@@ -45,7 +45,7 @@ namespace System.Threading.Tasks
/// and may be used from multiple threads concurrently.
/// </para>
/// </remarks>
- /// <typeparam name="TResult">The type of the result value assocatied with this <see
+ /// <typeparam name="TResult">The type of the result value associated with this <see
/// cref="TaskCompletionSource{TResult}"/>.</typeparam>
public class TaskCompletionSource<TResult>
{