From ed37903dec3401bd8c41b9f4f9e3cce503a3ea31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9ry=20Ogam?= Date: Fri, 26 Apr 2024 03:36:52 +0200 Subject: [PATCH] docs: typos in pagination.md (#5508) --- docs/guide/pagination.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/guide/pagination.md b/docs/guide/pagination.md index 2344322789..953f78c938 100644 --- a/docs/guide/pagination.md +++ b/docs/guide/pagination.md @@ -87,7 +87,7 @@ const table = useReactTable({ ### Pagination State -Whether or not you are using client-side or manual server-side pagination, you can use the built-in `pagination` state state and APIs. +Whether or not you are using client-side or manual server-side pagination, you can use the built-in `pagination` state and APIs. The `pagination` state is an object that contains the following properties: @@ -170,14 +170,14 @@ There are several pagination table instance APIs that are useful for hooking up - `nextPage`: Useful for going to the next page. (Button click handler) - `firstPage`: Useful for going to the first page. (Button click handler) - `lastPage`: Useful for going to the last page. (Button click handler) -- `setPageIndex`: uUseful for a "go to page" input. +- `setPageIndex`: Useful for a "go to page" input. - `resetPageIndex`: Useful for resetting the table state to the original page index. -- `setPageSize`: Useful for a "page size" input/select +- `setPageSize`: Useful for a "page size" input/select. - `resetPageSize`: Useful for resetting the table state to the original page size. - `setPagination`: Useful for setting all of the pagination state at once. - `resetPagination`: Useful for resetting the table state to the original pagination state. -> **Note**: Some of these APIs are new in `v8.13.0` +> **Note**: Some of these APIs are new in `v8.13.0`. ```jsx -