From ca947a62c2042681e8ae069c7998f7b380ac8387 Mon Sep 17 00:00:00 2001 From: Pierre Hedkvist Date: Sat, 9 Jan 2021 21:29:47 +0100 Subject: [PATCH] docs: Update mutations.md (#1602) Fix spelling in mutation page --- docs/src/pages/guides/mutations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/guides/mutations.md b/docs/src/pages/guides/mutations.md index f593d82f8f..769e7f8063 100644 --- a/docs/src/pages/guides/mutations.md +++ b/docs/src/pages/guides/mutations.md @@ -5,7 +5,7 @@ title: Mutations Unlike queries, mutations are typically used to create/update/delete data or perform server side-effects. For this purpose, React Query exports a `useMutation` hook. -Here's an example of a mutation that adds a new todo the server: +Here's an example of a mutation that adds a new todo to the server: ```js function App() {