diff --git a/src/Downloader/RequestConfiguration.cs b/src/Downloader/RequestConfiguration.cs
index 1eeee45..4db761c 100644
--- a/src/Downloader/RequestConfiguration.cs
+++ b/src/Downloader/RequestConfiguration.cs
@@ -114,7 +114,7 @@ public RequestConfiguration()
///
/// A that contains the contents of the HTTP Expect header. The default value is null.
///
- /// The value specified for a set operation is "100-continue". This value is case insensitive.
+ /// The value specified for a set operation is "100-continue". This value is case-insensitive.
///
///
public string Expect { get; set; }
@@ -178,10 +178,10 @@ public RequestConfiguration()
public bool Pipelined { get; set; }
///
- /// Gets or sets a Boolean value that indicates whether to send HTTP preauthentication header
+ /// Gets or sets a Boolean value that indicates whether to send HTTP pre-authentication header
/// information with current instance without waiting for an authentication challenge
/// from the requested resource.
- /// true to send a HTTP WWW-authenticate header with the current instance
+ /// true to send an HTTP WWW-authenticate header with the current instance
/// without waiting for an authentication challenge from the requested resource;
/// otherwise, false. The default is false.
///
@@ -232,8 +232,7 @@ public RequestConfiguration()
public bool SendChunked { get; set; }
///
- /// Gets or sets the timeout value in milliseconds for the and
- /// methods.
+ /// Gets or sets the timeout value in milliseconds for the request and response of http web methods.
///
public int Timeout { get; set; }
@@ -249,7 +248,7 @@ public RequestConfiguration()
/// is false.
///
///
- /// is set to the value "Chunked". This value is case insensitive.
+ /// is set to the value "Chunked". This value is case-insensitive.
///
public string TransferEncoding { get; set; }
diff --git a/src/Downloader/ThrottledStream.cs b/src/Downloader/ThrottledStream.cs
index 2754479..b72d6db 100644
--- a/src/Downloader/ThrottledStream.cs
+++ b/src/Downloader/ThrottledStream.cs
@@ -20,7 +20,7 @@ internal class ThrottledStream : Stream
///
/// The base stream.
/// The maximum bytes per second that can be transferred through the base stream.
- /// Thrown when is a null reference.
+ /// Thrown when baseStream /> is a null reference.
/// Thrown when is a negative value.
public ThrottledStream(Stream baseStream, long bandwidthLimit)
{