diff --git a/src/Cake.Http/HttpClientAliases.cs b/src/Cake.Http/HttpClientAliases.cs index ac14f3e..412dbe7 100644 --- a/src/Cake.Http/HttpClientAliases.cs +++ b/src/Cake.Http/HttpClientAliases.cs @@ -79,7 +79,7 @@ public static string HttpGet(this ICakeContext context, string address, HttpSett /// var responseBody = HttpGet("https://www.google.com", settings => /// { /// settings.UseBearerAuthorization("1af538baa9045a84c0e889f672baf83ff24") - /// .SetNoCeche() + /// .SetNoCache() /// .AppendHeader("Connection", "keep-alive"); /// }); /// diff --git a/src/Cake.Http/HttpClientAsyncAliases.cs b/src/Cake.Http/HttpClientAsyncAliases.cs index e61b1c4..59ae712 100644 --- a/src/Cake.Http/HttpClientAsyncAliases.cs +++ b/src/Cake.Http/HttpClientAsyncAliases.cs @@ -79,7 +79,7 @@ public static async Task HttpGetAsync(this ICakeContext context, string /// var responseBody = await HttpGetAsync("https://www.google.com", settings => /// { /// settings.UseBearerAuthorization("1af538baa9045a84c0e889f672baf83ff24") - /// .SetNoCeche() + /// .SetNoCache() /// .AppendHeader("Connection", "keep-alive"); /// }); /// diff --git a/src/Cake.Http/HttpSettingsExtensions.cs b/src/Cake.Http/HttpSettingsExtensions.cs index 9ea4b63..5261006 100644 --- a/src/Cake.Http/HttpSettingsExtensions.cs +++ b/src/Cake.Http/HttpSettingsExtensions.cs @@ -211,7 +211,7 @@ public static HttpSettings SetJsonRequestBody(this HttpSettings settings, T d /// /// Sets the request body as form url encoded. /// Only valid for Http Methods that allow a request body. - /// Any existing content in the RequestBody is overriden. + /// Any existing content in the RequestBody is overridden. /// /// The settings. /// Dictionary of data to url encode and set to the body. @@ -222,7 +222,7 @@ public static HttpSettings SetFormUrlEncodedRequestBody(this HttpSettings settin /// /// Sets the request body as form url encoded. /// Only valid for Http Methods that allow a request body. - /// Any existing content in the RequestBody is overriden. + /// Any existing content in the RequestBody is overridden. /// Accepts multiple parameters with the same key. /// /// The settings. @@ -245,7 +245,7 @@ public static HttpSettings SetFormUrlEncodedRequestBody(this HttpSettings settin /// /// Sets the request body as form url encoded. /// Only valid for Http Methods that allow a request body. - /// Any existing content in the RequestBody is overriden. + /// Any existing content in the RequestBody is overridden. /// Accepts multiple parameters with the same key. ///This can be used to post files to a remote URL /// @@ -282,7 +282,7 @@ public static HttpSettings SetMultipartFormDataRequestBody(this HttpSettings set /// /// Sets the request body as form url encoded. /// Only valid for Http Methods that allow a request body. - /// Any existing content in the RequestBody is overriden. + /// Any existing content in the RequestBody is overridden. /// Accepts multiple parameters with the same key. /// This can be used to post files to a remote URL ///