From d81f04a5b0f481188c6e0e4a8bff44573285c1a7 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 6 Sep 2018 08:48:00 -0700 Subject: [PATCH] Update doc comment for HttpRequest.Protocol (#1013) --- src/Microsoft.AspNetCore.Http.Abstractions/HttpRequest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Http.Abstractions/HttpRequest.cs b/src/Microsoft.AspNetCore.Http.Abstractions/HttpRequest.cs index a4337b7766..3488bf3bb5 100644 --- a/src/Microsoft.AspNetCore.Http.Abstractions/HttpRequest.cs +++ b/src/Microsoft.AspNetCore.Http.Abstractions/HttpRequest.cs @@ -66,9 +66,9 @@ namespace Microsoft.AspNetCore.Http public abstract IQueryCollection Query { get; set; } /// - /// Gets or sets the RequestProtocol. + /// Gets or sets the request protocol (e.g. HTTP/1.1). /// - /// The RequestProtocol. + /// The request protocol. public abstract string Protocol { get; set; } ///