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 +}