Skip to content

Commit

Permalink
docs: fix typo (#2782)
Browse files Browse the repository at this point in the history
recalulate -> recalculate
  • Loading branch information
targumon authored Oct 26, 2020
1 parent a898bf0 commit 401c6b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/pages/docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const data = React.useMemo(
)
```

> It's important that we're using [`React.useMemo`](https://reactjs.org/docs/hooks-reference.html#usememo) here to ensure that our data isn't recreated on every render. If we didn't use `React.useMemo`, the table would think it was receiving new data on every render and attempt to recalulate a lot of logic every single time. Not cool!
> It's important that we're using [`React.useMemo`](https://reactjs.org/docs/hooks-reference.html#usememo) here to ensure that our data isn't recreated on every render. If we didn't use `React.useMemo`, the table would think it was receiving new data on every render and attempt to recalculate a lot of logic every single time. Not cool!
## Define Columns

Expand Down

1 comment on commit 401c6b8

@vercel
Copy link

@vercel vercel bot commented on 401c6b8 Oct 26, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.