Skip to content

Commit 99a0b89

Browse files
committed
Typo fix
1 parent 9a10384 commit 99a0b89

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/reference/core/views/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ Rvx provides the following views for common use cases:
3737
assertViewState(someView);
3838
```
3939

40-
The current boundary can be access via the `first` and `last` properties.
40+
The current boundary can be accessed via the `first` and `last` properties.
4141
```jsx
4242
console.log(view.first, view.last);
4343
```
4444

45-
A callback that is called for any boundary updates (known as the _boundary owner_) can be set until the current [lifecycle](../lifecycle.md) is disposed. Note, that there can be only one boundary owner at a time.
45+
A function that is called for any boundary updates (known as the _boundary owner_) can be set until the current [lifecycle](../lifecycle.md) is disposed. Note, that there can be only one boundary owner at a time.
4646
```jsx
4747
view.setBoundaryOwner((first, last) => {
4848
// "first" and "last" are the new current boundary.

0 commit comments

Comments
 (0)