From 6055e25d19d1f7c21cccb6a5029915b06aa0569b Mon Sep 17 00:00:00 2001 From: David Fowler Date: Wed, 2 Dec 2015 22:51:48 -0800 Subject: [PATCH] Fixed typo in doc comment --- .../SendFileResponseExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNet.Http.Extensions/SendFileResponseExtensions.cs b/src/Microsoft.AspNet.Http.Extensions/SendFileResponseExtensions.cs index 7218adde73..bb236b7dd0 100644 --- a/src/Microsoft.AspNet.Http.Extensions/SendFileResponseExtensions.cs +++ b/src/Microsoft.AspNet.Http.Extensions/SendFileResponseExtensions.cs @@ -18,7 +18,7 @@ namespace Microsoft.AspNet.Http /// Sends the given file using the SendFile extension. /// /// - /// The full to the file. + /// The full path to the file. /// public static Task SendFileAsync(this HttpResponse response, string fileName) { @@ -39,7 +39,7 @@ namespace Microsoft.AspNet.Http /// Sends the given file using the SendFile extension. /// /// - /// The full to the file. + /// The full path to the file. /// The offset in the file. /// The number of types to send, or null to send the remainder of the file. ///