Fix comment typo in ManualResetValueTaskSourceCore
authorStephen Toub <stoub@microsoft.com>
Mon, 26 Aug 2019 12:59:21 +0000 (08:59 -0400)
committerGitHub <noreply@github.com>
Mon, 26 Aug 2019 12:59:21 +0000 (08:59 -0400)
Commit migrated from https://github.com/dotnet/coreclr/commit/15daca125fbb15bc3a9b65977957edd936fff752

src/libraries/System.Private.CoreLib/src/System/Threading/Tasks/Sources/ManualResetValueTaskSourceCore.cs

index a773749..bef04bd 100644 (file)
@@ -64,8 +64,8 @@ namespace System.Threading.Tasks.Sources
             SignalCompletion();
         }
 
-        /// <summary>Complets with an error.</summary>
-        /// <param name="error"></param>
+        /// <summary>Completes with an error.</summary>
+        /// <param name="error">The exception.</param>
         public void SetException(Exception error)
         {
             _error = ExceptionDispatchInfo.Capture(error);