From ab6d10ffe99ca76f64ed6eb0a1658b6568316c9b Mon Sep 17 00:00:00 2001 From: Zhiyuan Liang <141655842+zhiyuanliang-ms@users.noreply.github.com> Date: Tue, 17 Oct 2023 08:45:13 +0800 Subject: [PATCH] remove nameof in the negate example (#285) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5617699e..e1655128 100644 --- a/README.md +++ b/README.md @@ -245,7 +245,7 @@ In MVC views `` tags can be used to conditionally render content based You can also negate the tag helper evaluation to display content when a feature or set of features are disabled. By setting `negate="true"` in the example below, the content is only rendered if `FeatureX` is disabled. ``` HTML+Razor - +

This can only be seen if 'FeatureX' is disabled.

```