From 6013140ae557f1a2d6e30dccc6adf1067490017d Mon Sep 17 00:00:00 2001 From: uwaa Date: Fri, 15 Nov 2024 15:24:13 +0000 Subject: [PATCH] nitpicks --- HTTP/HttpRequest.cs | 1 - HTTP/Websockets/Websocket.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/HTTP/HttpRequest.cs b/HTTP/HttpRequest.cs index bc2a9bf..0d0a867 100644 --- a/HTTP/HttpRequest.cs +++ b/HTTP/HttpRequest.cs @@ -5,7 +5,6 @@ using System.Security.Cryptography; using System.Text; using System.Web; using System.Collections.Specialized; -using Uwaa.HTTP.Websockets; using Uwaa.HTTP.Responses; namespace Uwaa.HTTP; diff --git a/HTTP/Websockets/Websocket.cs b/HTTP/Websockets/Websocket.cs index 7c32b9a..41a4ef0 100644 --- a/HTTP/Websockets/Websocket.cs +++ b/HTTP/Websockets/Websocket.cs @@ -15,7 +15,7 @@ public sealed class Websocket public readonly HttpRequest Request; /// - /// The chosen sub-protocol requested by the client and supported by the server. + /// The chosen sub-protocol negotiated with the client. /// public readonly string? SubProtocol;