From efd765e970db256d968464aa6c24313880f2298c Mon Sep 17 00:00:00 2001 From: Brennan Date: Tue, 10 Dec 2019 21:18:41 -0800 Subject: [PATCH] Update wording (#17757) --- src/Shared/Http2cat/Http2CatHostedService.cs | 2 +- src/SignalR/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Shared/Http2cat/Http2CatHostedService.cs b/src/Shared/Http2cat/Http2CatHostedService.cs index 8d8beed4aa..55e496fa10 100644 --- a/src/Shared/Http2cat/Http2CatHostedService.cs +++ b/src/Shared/Http2cat/Http2CatHostedService.cs @@ -111,7 +111,7 @@ namespace Microsoft.AspNetCore.Http2Cat } finally { - // Unwind Https for shutdown. This must happen before context goes ot of scope or else DisposeAsync will hang + // Unwind Https for shutdown. This must happen before the context goes out of scope or else DisposeAsync will never complete context.Transport = originalTransport; if (sslState != null) diff --git a/src/SignalR/README.md b/src/SignalR/README.md index 20fdc5ecd4..ac3d241c04 100644 --- a/src/SignalR/README.md +++ b/src/SignalR/README.md @@ -1,7 +1,7 @@ ASP.NET Core SignalR ==================== -ASP.NET Core SignalR is a new library for ASP.NET Core developers that makes it incredibly simple to add real-time web functionality to your applications. What is "real-time web" functionality? It's the ability to have your server-side code push content to the connected clients as it happens, in real-time. +ASP.NET Core SignalR is a library for ASP.NET Core developers that makes it incredibly simple to add real-time web functionality to your applications. What is "real-time web" functionality? It's the ability to have your server-side code push content to the connected clients as it happens, in real-time. You can watch an introductory presentation here - [ASP.NET Core SignalR: Build 2018](https://www.youtube.com/watch?v=Lws0zOaseIM)