Skip to content

Commit

Permalink
Fixed typo in remarks section of OnCompleted (#62982)
Browse files Browse the repository at this point in the history
  • Loading branch information
slask committed Dec 20, 2021
1 parent 89857ea commit 192db36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ internal TaskAwaiter(Task task)
/// <param name="continuation">The action to invoke when the await operation completes.</param>
/// <exception cref="System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
/// <exception cref="System.InvalidOperationException">The awaiter was not properly initialized.</exception>
/// <remarks>This method is intended for compiler user rather than use directly in code.</remarks>
/// <remarks>This method is intended for compiler use rather than use directly in code.</remarks>
public void OnCompleted(Action continuation)
{
OnCompletedInternal(m_task, continuation, continueOnCapturedContext: true, flowExecutionContext: true);
Expand Down

0 comments on commit 192db36

Please sign in to comment.