diff --git a/docs/useCreate.md b/docs/useCreate.md index d45d1933923..deda552b18c 100644 --- a/docs/useCreate.md +++ b/docs/useCreate.md @@ -5,7 +5,7 @@ title: "useCreate" # `useCreate` -This hook allows to call `dataProvider.create()` when the callback is executed. +This hook allows to call `dataProvider.create()` when the callback is executed. ```jsx // syntax diff --git a/docs/useDelete.md b/docs/useDelete.md index b1ff05f89ab..2765291534d 100644 --- a/docs/useDelete.md +++ b/docs/useDelete.md @@ -5,7 +5,7 @@ title: "useDelete" # `useDelete` -This hook allows calling `dataProvider.delete()` when the callback is executed and deleting a single record based on its `id`. +This hook allows calling `dataProvider.delete()` when the callback is executed and deleting a single record based on its `id`. ```jsx // syntax diff --git a/docs/useDeleteMany.md b/docs/useDeleteMany.md index 46955a24443..2b192b272ab 100644 --- a/docs/useDeleteMany.md +++ b/docs/useDeleteMany.md @@ -5,7 +5,7 @@ title: "useDeleteMany" # `useDeleteMany` -This hook allows to call `dataProvider.deleteMany()` when the callback is executed, and delete an array of records based on their `ids`. +This hook allows to call `dataProvider.deleteMany()` when the callback is executed, and delete an array of records based on their `ids`. ```jsx // syntax diff --git a/docs/useUpdate.md b/docs/useUpdate.md index 0168d9152fc..7c48643b14a 100644 --- a/docs/useUpdate.md +++ b/docs/useUpdate.md @@ -5,7 +5,7 @@ title: "useUpdate" # `useUpdate` -This hook allows to call `dataProvider.update()` when the callback is executed, and update a single record based on its `id` and a `data` argument. +This hook allows to call `dataProvider.update()` when the callback is executed, and update a single record based on its `id` and a `data` argument. ```jsx // syntax diff --git a/docs/useUpdateMany.md b/docs/useUpdateMany.md index 08164530360..bf526149065 100644 --- a/docs/useUpdateMany.md +++ b/docs/useUpdateMany.md @@ -5,7 +5,7 @@ title: "useUpdateMany" # `useUpdateMany` -This hook allows to call `dataProvider.updateMany()` when the callback is executed, and update an array of records based on their `ids` and a `data` argument. +This hook allows to call `dataProvider.updateMany()` when the callback is executed, and update an array of records based on their `ids` and a `data` argument. ```jsx