From 6b46d02d964aa562dfdc42b8122ef307686ba138 Mon Sep 17 00:00:00 2001 From: David Glass Date: Tue, 1 Aug 2017 16:01:53 +0100 Subject: [PATCH] Tidied up a sentence that didn't make sense (#3859) --- aspnetcore/mvc/views/working-with-forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/mvc/views/working-with-forms.md b/aspnetcore/mvc/views/working-with-forms.md index 589d53e38c..ed9ec7e7e9 100644 --- a/aspnetcore/mvc/views/working-with-forms.md +++ b/aspnetcore/mvc/views/working-with-forms.md @@ -81,7 +81,7 @@ Syntax: The Input Tag Helper: -* Generates the `id` and `name` HTML attributes for the expression name specified in the `asp-for` attribute. `asp-for="Property1.Property2"` is equivalent to `m => m.Property1.Property2`, that is the attribute value literally is part of an expression. The name of the expression is what's used for the `asp-for` attribute value. +* Generates the `id` and `name` HTML attributes for the expression name specified in the `asp-for` attribute. `asp-for="Property1.Property2"` is equivalent to `m => m.Property1.Property2`. The name of the expression is what is used for the `asp-for` attribute value. See the [Expression names](#expression-names) section for additional information. * Sets the HTML `type` attribute value based on the model type and [data annotation](https://msdn.microsoft.com/library/system.componentmodel.dataannotations.aspx) attributes applied to the model property