Update doc comment for HttpRequest.Protocol (#1013)

This commit is contained in:
Daniel Roth 2018-09-06 08:48:00 -07:00 committed by Chris Ross
parent fb560f5992
commit d81f04a5b0
1 changed files with 2 additions and 2 deletions

View File

@ -66,9 +66,9 @@ namespace Microsoft.AspNetCore.Http
public abstract IQueryCollection Query { get; set; }
/// <summary>
/// Gets or sets the RequestProtocol.
/// Gets or sets the request protocol (e.g. HTTP/1.1).
/// </summary>
/// <returns>The RequestProtocol.</returns>
/// <returns>The request protocol.</returns>
public abstract string Protocol { get; set; }
/// <summary>