diff --git a/src/Microsoft.AspNet.Http.Abstractions/HttpRequest.cs b/src/Microsoft.AspNet.Http.Abstractions/HttpRequest.cs
index c0f52fd400..a13a78e600 100644
--- a/src/Microsoft.AspNet.Http.Abstractions/HttpRequest.cs
+++ b/src/Microsoft.AspNet.Http.Abstractions/HttpRequest.cs
@@ -54,15 +54,15 @@ namespace Microsoft.AspNet.Http
public abstract PathString Path { get; set; }
///
- /// Gets or set the query string.
+ /// Gets or set the raw query string used to create the query collection in Request.Query.
///
- /// The query string.
+ /// The raw query string.
public abstract QueryString QueryString { get; set; }
///
- /// Gets the query value collection parsed from RequestQueryString.
+ /// Gets the query value collection parsed from Request.QueryString.
///
- /// The query value collection parsed from RequestQueryString.
+ /// The query value collection parsed from Request.QueryString.
public abstract IQueryCollection Query { get; set; }
///