Skip to content

Commit

Permalink
style(docs): white-space removal
Browse files Browse the repository at this point in the history
  • Loading branch information
soullivaneuh committed May 19, 2022
1 parent d06a297 commit fbcda01
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/useCreate.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/useDelete.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/useDeleteMany.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/useUpdate.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/useUpdateMany.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fbcda01

Please sign in to comment.