diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 70b2184b54..d406a0ee7b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -29,14 +29,14 @@ If you have been assigned to fix an issue or develop a new feature, please follo ## Online one-click setup -You can use Gitpod(An Online Open Source VS Code like IDE which is free for Open Source) for developing online. With a single click it will start a workspace and automatically: +You can use Gitpod (An Online Open Source VS Code like IDE which is free for Open Source) for developing online. With a single click it will start a workspace and automatically: - clone the `react-query` repo. - install all the dependencies in `/` and `/docs`. - run `yarn start` in the root(`/`) to Auto-build files. - run `yarn dev` in `/docs`. -[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/from-referrer/) +[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/tannerlinsley/react-query) ## Commit message conventions diff --git a/docs/src/pages/guides/mutations.md b/docs/src/pages/guides/mutations.md index b6005fb1ba..47e32fafe6 100644 --- a/docs/src/pages/guides/mutations.md +++ b/docs/src/pages/guides/mutations.md @@ -195,7 +195,7 @@ useMutation(addTodo, { mutate(todo, { onSuccess: (data, error, variables, context) => { // Will execute only once, for the last mutation (Todo 3), - // regardles which mutation resolves first + // regardless which mutation resolves first }, }) })