Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaylorhq committed Nov 27, 2024
1 parent 45e905b commit 1d99db7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class MyComponent extends Component {
</template>
}
```
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)

Expand All @@ -83,7 +83,7 @@ class MyComponent extends Component {
</template>
}
```
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

Expand Down

0 comments on commit 1d99db7

Please sign in to comment.