Index: Src/GoogleApis/Apis/Http/HttpExtenstions.cs =================================================================== --- a/Src/GoogleApis/Apis/Http/HttpExtenstions.cs +++ b/Src/GoogleApis/Apis/Http/HttpExtenstions.cs @@ -19,13 +19,13 @@ namespace Google.Apis.Http { - /// + /// /// Extension methods to and /// . /// static class HttpExtenstions { - /// Returns true if the response contains one of the redirect status codes. + /// Returns true if the response contains one of the redirect status codes. public static bool IsRedirectStatusCode(this HttpResponseMessage message) { switch (message.StatusCode) @@ -40,7 +40,7 @@ } } - /// Sets an empty Http content. + /// Sets an empty HTTP content. public static HttpContent SetEmptyContent(this HttpRequestMessage request) { request.Content = new ByteArrayContent(new byte[0]);