Skip to content

Commit 192db36

Browse files
authored
Fixed typo in remarks section of OnCompleted (#62982)
1 parent 89857ea commit 192db36

File tree

1 file changed

+1
-1
lines changed
  • src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices

1 file changed

+1
-1
lines changed

src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/TaskAwaiter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ internal TaskAwaiter(Task task)
7878
/// <param name="continuation">The action to invoke when the await operation completes.</param>
7979
/// <exception cref="System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
8080
/// <exception cref="System.InvalidOperationException">The awaiter was not properly initialized.</exception>
81-
/// <remarks>This method is intended for compiler user rather than use directly in code.</remarks>
81+
/// <remarks>This method is intended for compiler use rather than use directly in code.</remarks>
8282
public void OnCompleted(Action continuation)
8383
{
8484
OnCompletedInternal(m_task, continuation, continueOnCapturedContext: true, flowExecutionContext: true);

0 commit comments

Comments
 (0)