Skip to content

Commit abfd519

Browse files
authored
Updated summary (#19087)
1 parent 4895f51 commit abfd519

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Servers/Connections.Abstractions/src/ConnectionHandler.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
namespace Microsoft.AspNetCore.Connections
77
{
88
/// <summary>
9-
/// Represents an end point that multiple connections connect to. For HTTP, endpoints are URLs, for non HTTP it can be a TCP listener (or similar)
9+
/// Represents an endpoint that multiple connections connect to. For HTTP, endpoints are URLs, for non-HTTP it can be a TCP listener (or similar).
1010
/// </summary>
1111
public abstract class ConnectionHandler
1212
{
1313
/// <summary>
14-
/// Called when a new connection is accepted to the endpoint
14+
/// Called when a new connection is accepted to the endpoint.
1515
/// </summary>
1616
/// <param name="connection">The new <see cref="ConnectionContext"/></param>
1717
/// <returns>A <see cref="Task"/> that represents the connection lifetime. When the task completes, the connection is complete.</returns>
1818
public abstract Task OnConnectedAsync(ConnectionContext connection);
1919
}
20-
}
20+
}

0 commit comments

Comments
 (0)