From 1d99db78fd87a286d8e1df2a0e6fba37ac756a5f Mon Sep 17 00:00:00 2001 From: David Taylor Date: Wed, 27 Nov 2024 22:58:31 +0000 Subject: [PATCH] Update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2041043..b68838b 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ class MyComponent extends Component { } ``` -When `this.name` is reassigned, the `@name` argument on the curried component will be invalidated. The getter will not be re-evaluated. +When `this.name` is reassigned, the `@name` argument on the curried component will be invalidated. The `curriedComponent` getter will not be re-evaluated. ### Reactive arguments (option 2: rerender entire component) @@ -83,7 +83,7 @@ class MyComponent extends Component { } ``` -When `this.name` is reassigned, the getter will be invalidated, and the curried component will be completely rerendered. +When `this.name` is reassigned, the `curriedComponent` getter will be invalidated, and the curried component will be completely rerendered. ### As a helper