From f7b77cb1a0c8c25a035e1e4be97a1b03f849fa52 Mon Sep 17 00:00:00 2001 From: amen-souissi Date: Fri, 11 Dec 2020 09:24:37 +0100 Subject: [PATCH] docs(typos): fix typos in mutations guide --- docs/src/pages/guides/mutations.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/pages/guides/mutations.md b/docs/src/pages/guides/mutations.md index 4d19fc00bf..1b640bbd28 100644 --- a/docs/src/pages/guides/mutations.md +++ b/docs/src/pages/guides/mutations.md @@ -39,10 +39,10 @@ function App() { A mutation can only be in one of the following states at any given moment: -- `isIdle` or `status === 'idle' - The mutation is currently idle or in a fresh/reset state -- `isLoading` or `status === 'loading' - The mutation is currently running +- `isIdle` or `status === 'idle'` - The mutation is currently idle or in a fresh/reset state +- `isLoading` or `status === 'loading'` - The mutation is currently running - `isError` or `status === 'error'` - The mutation encountered an error -- `isSuccess` or `status === 'success' - The mutation was successful and mutation data is available +- `isSuccess` or `status === 'success'` - The mutation was successful and mutation data is available Beyond those primary state, more information is available depending on the state the mutation: