Skip to content

Commit

Permalink
Fixes typo in DownloadFile XMLDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Feb 21, 2017
1 parent f338e1e commit 5bfecf4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/Cake.Common/Net/HttpAliases.cs
Expand Up @@ -122,7 +122,8 @@ public static FilePath DownloadFile(this ICakeContext context, Uri address, Down
/// </summary>
/// <example>
/// <code>
/// DownloadFile("http://www.example.org/index.html", "./outputdir");
/// var outputPath = File("./index.html");
/// DownloadFile("http://www.example.org/index.html", outputPath);
/// </code>
/// </example>
/// <param name="context">The context.</param>
Expand All @@ -140,7 +141,8 @@ public static void DownloadFile(this ICakeContext context, string address, FileP
/// </summary>
/// <example>
/// <code>
/// DownloadFile("http://www.example.org/index.html", "./outputdir", new DownloadFileSettings()
/// var outputPath = File("./index.html");
/// DownloadFile("http://www.example.org/index.html", outputPath, new DownloadFileSettings()
/// {
/// Username = "bob",
/// Password = "builder"
Expand All @@ -164,7 +166,8 @@ public static void DownloadFile(this ICakeContext context, string address, FileP
/// <example>
/// <code>
/// var address = new Uri("http://www.example.org/index.html");
/// DownloadFile(address, "./outputdir", new DownloadFileSettings()
/// var outputPath = File("./index.html");
/// DownloadFile(address, outputPath, new DownloadFileSettings()
/// {
/// Username = "bob",
/// Password = "builder"
Expand Down

0 comments on commit 5bfecf4

Please sign in to comment.