Skip to content

Docs: changed to align with function behaviour. #54965

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/Mvc/Mvc.ViewFeatures/src/Rendering/IHtmlHelperOfT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,8 @@ IHtmlContent EditorFor<TResult>(
/// <summary>
/// Returns an &lt;input&gt; element of type "hidden" for the specified <paramref name="expression"/>. Adds a
/// "value" attribute to the element containing the first non-<c>null</c> value found in:
/// the <see cref="ActionContext.ModelState"/> entry with full name,
/// the <paramref name="expression"/> evaluated against <see cref="ViewDataDictionary.Model"/>, or
/// the <paramref name="htmlAttributes"/> dictionary entry with key "value".
/// the <see cref="ActionContext.ModelState"/> entry with full name or
/// the <paramref name="expression"/> evaluated against <see cref="ViewDataDictionary.Model"/>.
/// See <see cref="NameFor"/> for more information about a "full name".
/// </summary>
/// <param name="expression">An expression to be evaluated against the current model.</param>
Expand Down