From 62d10bc08e5969721770f7e3d0f6351298579ad1 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Mon, 4 Feb 2019 09:50:12 -0800 Subject: [PATCH] Changes per PR --- src/Components/Server/src/Circuits/CircuitHandler.cs | 4 ++-- src/Components/Server/src/ComponentsHub.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Components/Server/src/Circuits/CircuitHandler.cs b/src/Components/Server/src/Circuits/CircuitHandler.cs index c6d4e74457..21749d7bdd 100644 --- a/src/Components/Server/src/Circuits/CircuitHandler.cs +++ b/src/Components/Server/src/Circuits/CircuitHandler.cs @@ -45,7 +45,7 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits /// Invoked when a new circuit was established. /// /// The . - /// The . + /// A that notifies when the client connection is aborted. /// that represents the asynchronous execution operation. public virtual Task OnCircuitOpenedAsync(Circuit circuit, CancellationToken cancellationToken) => Task.CompletedTask; @@ -57,7 +57,7 @@ namespace Microsoft.AspNetCore.Components.Server.Circuits /// /// /// The . - /// The . + /// A that notifies when the client connection is aborted. /// that represents the asynchronous execution operation. public virtual Task OnConnectionUpAsync(Circuit circuit, CancellationToken cancellationToken) => Task.CompletedTask; diff --git a/src/Components/Server/src/ComponentsHub.cs b/src/Components/Server/src/ComponentsHub.cs index f56971f1cd..946af953f0 100644 --- a/src/Components/Server/src/ComponentsHub.cs +++ b/src/Components/Server/src/ComponentsHub.cs @@ -13,7 +13,7 @@ using Microsoft.Extensions.Logging; namespace Microsoft.AspNetCore.Components.Server { /// - /// A SignalR hub that accepts connections to a ASP.NET Core Components WebApp. + /// A SignalR hub that accepts connections to an ASP.NET Core Components application. /// public sealed class ComponentsHub : Hub {