Fix doc comment error.

This commit is contained in:
Chris R 2015-08-30 19:43:51 -07:00
parent 9915ea3809
commit e0e2ff6825
1 changed files with 2 additions and 2 deletions

View File

@ -134,9 +134,9 @@ namespace Microsoft.AspNet.Mvc.ModelBinding
} }
/// <summary> /// <summary>
/// Gets an <see cref="IEnumerator<string>"/> for this <see cref="ValueProviderResult"/>. /// Gets an <see cref="IEnumerator{string}"/> for this <see cref="ValueProviderResult"/>.
/// </summary> /// </summary>
/// <returns>An <see cref="IEnumerator<string>"/>.</returns> /// <returns>An <see cref="IEnumerator{string}"/>.</returns>
public IEnumerator<string> GetEnumerator() public IEnumerator<string> GetEnumerator()
{ {
return ((IEnumerable<string>)Values).GetEnumerator(); return ((IEnumerable<string>)Values).GetEnumerator();