From 08361206a73c879041531b3883b91abd038d9274 Mon Sep 17 00:00:00 2001 From: red Date: Tue, 26 Apr 2022 13:04:07 +0300 Subject: [PATCH] Fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b994006..c8dfa10 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Suppose that you have a component that is being rerendered undesirably often. F 2. Inherit from `DisplayHashRerenderComponentBase` on the component that you wish to reduce rerender frequency: ```c# - @inherit DisplayHashRerenderComponentBase + @inherits DisplayHashRerenderComponentBase ``` 3. Override the abstract method `GetDisplayHash` to return a string that represents *all* the displayed state of the component. That is, it should return a different value when any displayable state changes, and the same value when no visible change happens.