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();