-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed typo in remarks section of OnCompleted #62982
Conversation
Tagging subscribers to this area: @dotnet/area-system-runtime-compilerservices Issue DetailsFix #62248
|
Hi @buyaa-n . Looks like the pipeline fails for reasons unrelated to the change. Could be a transient issue? Can the pipeline be retried? |
Yes, it is unrelated and doesn't look like needs further attention, thanks! |
@@ -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> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This only changed this one comment. The same typo appears in other places, e.g. in the very next function on L91.
Fix #62248