Minor documentation fix for SerializableError

ModelStateEntry -> ModelStateDictionary
This commit is contained in:
Mardoxx 2017-05-18 13:01:43 +01:00 committed by Ryan Nowak
parent c8614e9aa8
commit ece5e748ad
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ namespace Microsoft.AspNetCore.Mvc
/// <summary>
/// Creates a new instance of <see cref="SerializableError"/>.
/// </summary>
/// <param name="modelState"><see cref="ModelStateEntry"/> containing the validation errors.</param>
/// <param name="modelState"><see cref="ModelStateDictionary"/> containing the validation errors.</param>
public SerializableError(ModelStateDictionary modelState)
: this()
{
@ -57,4 +57,4 @@ namespace Microsoft.AspNetCore.Mvc
}
}
}
}
}