Skip to content

Commit

Permalink
Merge pull request #23 from girder/docs
Browse files Browse the repository at this point in the history
Fix documentation typos
  • Loading branch information
brianhelba committed Dec 28, 2020
2 parents 9ae7136 + 47dee76 commit 713b23c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
);
```
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 713b23c

Please sign in to comment.