diff --git a/pages/docs/mutation.md b/pages/docs/mutation.md index 7e8a04dc..919e27ac 100644 --- a/pages/docs/mutation.md +++ b/pages/docs/mutation.md @@ -79,7 +79,7 @@ mutate('/api/user', updateUser(newUser)) // `updateUser` is a Promise of the req Sometimes, you want to update a part of your data based on the current data. -With `mutate`, you can pass an async function which will receive the current cached value, if any, and let you return an updated document. +With `mutate`, you can pass an async function which will receive the current cached value, if any, and returns an updated document. ```jsx mutate('/api/todos', async todos => {