Correct code comment (#13993)

This commit is contained in:
Daniel Roth 2019-09-16 08:28:22 -07:00 committed by Pranav K
parent 7b0b2980dc
commit afdf1443a9
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ namespace Microsoft.AspNetCore.Mvc.ModelBinding
/// Retrieves a value object using the specified key.
/// </summary>
/// <param name="key">The key of the value object to retrieve.</param>
/// <returns>The value object for the specified key. If the exact key is not found, null.</returns>
/// <returns>The value object for the specified key. If the exact key is not found, <see cref="ValueProviderResult.None" />.</returns>
ValueProviderResult GetValue(string key);
}
}