Skip to content

Commit 065b083

Browse files
authored
fixed a typo for the StopAsync code docs (#60226)
1 parent 5c52ed9 commit 065b083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DefaultBuilder/src/WebApplication.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public Task StartAsync(CancellationToken cancellationToken = default) =>
166166
/// <param name="cancellationToken"></param>
167167
/// <returns>
168168
/// A <see cref="Task"/> that represents the shutdown of the <see cref="WebApplication"/>.
169-
/// Successful completion indicates that all the HTTP server has stopped.
169+
/// Successful completion indicates that the HTTP server has stopped.
170170
/// </returns>
171171
public Task StopAsync(CancellationToken cancellationToken = default) =>
172172
_host.StopAsync(cancellationToken);

0 commit comments

Comments
 (0)