Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
update per review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyAyersMS committed Oct 30, 2017
1 parent fe936f7 commit ac45c0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ public struct ValueTaskAwaiter<TResult> : ICriticalNotifyCompletion, IValueTaskA
internal Task<TResult> AsTask() => _value.AsTask();

/// <summary>Gets the task underlying <see cref="_value"/>.</summary>
public Task GetTask() => _value.AsTask();
Task IValueTaskAwaiter.GetTask() => _value.AsTask();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,8 @@ internal interface IConfiguredTaskAwaiter { }
/// <summary>
/// Internal interface used to enable extract the Task from arbitrary ValueTask awaiters.
/// </summary>>
internal interface IValueTaskAwaiter {
internal interface IValueTaskAwaiter
{
Task GetTask();
}

Expand Down

0 comments on commit ac45c0b

Please sign in to comment.