From c7eaf77953964b3c30e98a55f45c01300de7a7fc Mon Sep 17 00:00:00 2001 From: Roma Marusyk Date: Fri, 28 Sep 2018 03:13:28 +0300 Subject: [PATCH] Fix XML documentation for IFormFileCollection (#1041) --- .../IFormFileCollection.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Microsoft.AspNetCore.Http.Features/IFormFileCollection.cs b/src/Microsoft.AspNetCore.Http.Features/IFormFileCollection.cs index b7ec5f0af8..ab862c917b 100644 --- a/src/Microsoft.AspNetCore.Http.Features/IFormFileCollection.cs +++ b/src/Microsoft.AspNetCore.Http.Features/IFormFileCollection.cs @@ -11,7 +11,7 @@ namespace Microsoft.AspNetCore.Http public interface IFormFileCollection : IReadOnlyList { /// - /// Gets the file with the specified name. + /// Gets the first file with the specified name. /// /// The name of the file to get. /// @@ -20,7 +20,7 @@ namespace Microsoft.AspNetCore.Http IFormFile this[string name] { get; } /// - /// Gets the file with the specified name. + /// Gets the first file with the specified name. /// /// The name of the file to get. /// @@ -39,4 +39,4 @@ namespace Microsoft.AspNetCore.Http /// IReadOnlyList GetFiles(string name); } -} \ No newline at end of file +}