Skip to content

Commit 62d10bc

Browse files
committed
Changes per PR
1 parent 92df79b commit 62d10bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Components/Server/src/Circuits/CircuitHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public abstract class CircuitHandler
4545
/// Invoked when a new circuit was established.
4646
/// </summary>
4747
/// <param name="circuit">The <see cref="Circuit"/>.</param>
48-
/// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param>
48+
/// <param name="cancellationToken">A <see cref="CancellationToken"/> that notifies when the client connection is aborted.</param>
4949
/// <returns><see cref="Task"/> that represents the asynchronous execution operation.</returns>
5050
public virtual Task OnCircuitOpenedAsync(Circuit circuit, CancellationToken cancellationToken) => Task.CompletedTask;
5151

@@ -57,7 +57,7 @@ public abstract class CircuitHandler
5757
/// </para>
5858
/// </summary>
5959
/// <param name="circuit">The <see cref="Circuit"/>.</param>
60-
/// <param name="cancellationToken">The <see cref="CancellationToken"/>.</param>
60+
/// <param name="cancellationToken">A <see cref="CancellationToken"/> that notifies when the client connection is aborted.</param>
6161
/// <returns><see cref="Task"/> that represents the asynchronous execution operation.</returns>
6262
public virtual Task OnConnectionUpAsync(Circuit circuit, CancellationToken cancellationToken) => Task.CompletedTask;
6363

src/Components/Server/src/ComponentsHub.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
namespace Microsoft.AspNetCore.Components.Server
1414
{
1515
/// <summary>
16-
/// A SignalR hub that accepts connections to a ASP.NET Core Components WebApp.
16+
/// A SignalR hub that accepts connections to an ASP.NET Core Components application.
1717
/// </summary>
1818
public sealed class ComponentsHub : Hub
1919
{

0 commit comments

Comments
 (0)