Skip to content

Commit

Permalink
add namespace prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
RexJaeschke authored Nov 19, 2022
1 parent 9b42fd0 commit 68c9e97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions standard/standard-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ namespace System
{
public interface IAsyncDisposable
{
ValueTask DisposeAsync();
System.Threading.Tasks.ValueTask DisposeAsync();
}

public class FormattableString : IFormattable { }
Expand All @@ -399,9 +399,9 @@ namespace System.Collections.Generic
IAsyncEnumerator<T> GetAsyncEnumerator();
}

public interface IAsyncEnumerator<out T> : IAsyncDisposable
public interface IAsyncEnumerator<out T> : System.IAsyncDisposable
{
ValueTask<bool> MoveNextAsync();
System.Threading.Tasks.ValueTask<bool> MoveNextAsync();
T Current { get; }
}
}
Expand Down

0 comments on commit 68c9e97

Please sign in to comment.