Skip to content

Commit

Permalink
Fixes Typo in HttpClient Examples
Browse files Browse the repository at this point in the history
  • Loading branch information
JPRuskin committed Oct 26, 2022
1 parent 30b276f commit 3d8570c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Cake.Http/HttpClientAliases.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
/// });
/// </code>
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Http/HttpClientAsyncAliases.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public static async Task<string> HttpGetAsync(this ICakeContext context, string
/// var responseBody = await HttpGetAsync("https://www.google.com", settings =>
/// {
/// settings.UseBearerAuthorization("1af538baa9045a84c0e889f672baf83ff24")
/// .SetNoCeche()
/// .SetNoCache()
/// .AppendHeader("Connection", "keep-alive");
/// });
/// </code>
Expand Down

0 comments on commit 3d8570c

Please sign in to comment.