From 063d48753af246e1f0f1fd1ea68509aa906d0531 Mon Sep 17 00:00:00 2001 From: Shadi Namrouti Date: Wed, 30 Jan 2019 23:23:55 +0200 Subject: [PATCH] Update partial-tag-helper.md (#10700) Remove a repeated sentence. --- aspnetcore/mvc/views/tag-helpers/built-in/partial-tag-helper.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/mvc/views/tag-helpers/built-in/partial-tag-helper.md b/aspnetcore/mvc/views/tag-helpers/built-in/partial-tag-helper.md index b9319d32f1..f56d531517 100644 --- a/aspnetcore/mvc/views/tag-helpers/built-in/partial-tag-helper.md +++ b/aspnetcore/mvc/views/tag-helpers/built-in/partial-tag-helper.md @@ -47,7 +47,7 @@ The following markup uses an explicit path, indicating that *_ProductPartial.csh ## for -The `for` attribute assigns a [ModelExpression](/dotnet/api/microsoft.aspnetcore.mvc.viewfeatures.modelexpression) to be evaluated against the current model. A `ModelExpression` infers the `@Model.` syntax. For example, `for="Product"` can be used instead of `for="@Model.Product"`. This default inference behavior is overridden by using the `@` symbol to define an inline expression. The `for` attribute can't be used with the [model](#model) attribute. +The `for` attribute assigns a [ModelExpression](/dotnet/api/microsoft.aspnetcore.mvc.viewfeatures.modelexpression) to be evaluated against the current model. A `ModelExpression` infers the `@Model.` syntax. For example, `for="Product"` can be used instead of `for="@Model.Product"`. This default inference behavior is overridden by using the `@` symbol to define an inline expression. The following markup loads *_ProductPartial.cshtml*: