Skip to content

Commit 0035e52

Browse files
authored
feat: fixed typo in providers/google.md (#1674)
1 parent efffa45 commit 0035e52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/content/en/providers/google.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ You will receive clientID and secret key. copy the clientId to your nuxt config
4444
You will need to handel to auth with a server side like Django, Node, Go ect.
4545
after that you config will look like that
4646

47-
```
47+
```js
4848
google: {
4949
clientId: '<you client id>',
5050
codeChallengeMethod: '',
5151
responseType: 'code',
5252
endpoints: {
53-
token: 'http://localhost:8000/user/google/', // somm backend url to resolve your auth with google and give you the token back
54-
userInfo: 'http://localhost:8000/auth/user/' // the endpoint to get the user info after you received the token
53+
token: 'http://localhost:8000/user/google/', // your backend url to resolve your auth with google and give you the token back
54+
userInfo: 'http://localhost:8000/auth/user/' // your endpoint to get the user info after you received the token
5555
},
5656
},
5757
```

0 commit comments

Comments
 (0)