Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit 6055e25

Browse files
committed
Fixed typo in doc comment
1 parent 5b175be commit 6055e25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.AspNet.Http.Extensions/SendFileResponseExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static class SendFileResponseExtensions
1818
/// Sends the given file using the SendFile extension.
1919
/// </summary>
2020
/// <param name="response"></param>
21-
/// <param name="fileName">The full to the file.</param>
21+
/// <param name="fileName">The full path to the file.</param>
2222
/// <returns></returns>
2323
public static Task SendFileAsync(this HttpResponse response, string fileName)
2424
{
@@ -39,7 +39,7 @@ public static Task SendFileAsync(this HttpResponse response, string fileName)
3939
/// Sends the given file using the SendFile extension.
4040
/// </summary>
4141
/// <param name="response"></param>
42-
/// <param name="fileName">The full to the file.</param>
42+
/// <param name="fileName">The full path to the file.</param>
4343
/// <param name="offset">The offset in the file.</param>
4444
/// <param name="count">The number of types to send, or null to send the remainder of the file.</param>
4545
/// <param name="cancellationToken"></param>

0 commit comments

Comments
 (0)