From ae0f15bf9541ecbe9217f90b522e75893455ac8d Mon Sep 17 00:00:00 2001 From: Logan Call Date: Fri, 20 Sep 2019 22:07:32 -0600 Subject: [PATCH 1/2] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2fc65ff424a..6e9c4292771 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Tools for managing promises or normalized client stores/caches are plentiful the ## The solution -React Query contains a set of hooks that attempt to address these issues. Ouf of the box, React Query: +React Query contains a set of hooks that attempt to address these issues. Out of the box, React Query: - Dedupes similar requests at the application level - Caches response data across similar requests From e327e5b82c72fb9bdb0d64cfd384f3fbf25032e5 Mon Sep 17 00:00:00 2001 From: Logan Call Date: Fri, 20 Sep 2019 22:11:15 -0600 Subject: [PATCH 2/2] Fix typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e9c4292771..5db65149fbe 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ The `ReactQueryProvider` is a provider component that is necessary to use React import { ReactQueryProvider } from '@tannerlinsley/react-query-temp' function App() { - ;... + return ... } ``` @@ -86,7 +86,7 @@ const config = { } function App() { - ;... + return ... } ```