diff --git a/docs/Actions.md b/docs/Actions.md
index 6c2862490a6..bd2e144bb7f 100644
--- a/docs/Actions.md
+++ b/docs/Actions.md
@@ -283,7 +283,7 @@ const UserProfile = ({ record }) => {
```jsx
// syntax
-const { data, loading, loaded, error } = useGetMAny(resource, ids, options);
+const { data, loading, loaded, error } = useGetMany(resource, ids, options);
// example
import { useGetMany } from 'react-admin';
@@ -315,7 +315,7 @@ const PostComments = ({ post_id }) => {
'post_id',
post_id,
{ page: 1, perPage: 10 },
- { field: 'published_at', order: 'DESC' }
+ { field: 'published_at', order: 'DESC' },
{},
'posts',
);
@@ -359,7 +359,7 @@ const IncreaseLikeButton = ({ record }) => {
const diff = { likes: record.likes + 1 };
const [update, { loading, error }] = useUpdate('likes', record.id, diff, record);
if (error) { return
ERROR
; }
- return