From 47dee763e534f8ec93aa48805f69433fb184a157 Mon Sep 17 00:00:00 2001 From: Brian Helba Date: Mon, 28 Dec 2020 16:27:46 -0500 Subject: [PATCH] Fix documentation typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c3621bf..9dce739 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ using the OAuth2.0 Authorization Code Grant with PKCE flow. const oauthClient = new OauthClient( process.env.OAUTH_API_ROOT, // e.g. 'http://localhost:8000/oauth/' - process.env.OAUTH_CLIENT_ID, // e.g. 'Qir0Aq7AKIsAkMDLQe9MEfORbHEBKsViNhAKJf1A', + process.env.OAUTH_CLIENT_ID, // e.g. 'Qir0Aq7AKIsAkMDLQe9MEfORbHEBKsViNhAKJf1A' ); ``` @@ -61,7 +61,7 @@ using the OAuth2.0 Authorization Code Grant with PKCE flow. }); ``` -* The login state will persist accross page refreshes. Call `logout` to clear any active login: +* The login state will persist across page refreshes. Call `logout` to clear any active login: ```js document.querySelector('#sign-out-link').addEventListener('click', (event) => { event.preventDefault();