Skip to content

Commit

Permalink
fix(docs): GitHub capitalize (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
potato4d authored and pi0 committed Sep 25, 2018
1 parent c2b0d7b commit eb7dc9e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Expand Up @@ -4,7 +4,7 @@ Authentication module for Nuxt.js.

## Links

* [Github](https://github.com/nuxt-community/auth-module)
* [GitHub](https://github.com/nuxt-community/auth-module)
* [Release Notes](./CHANGELOG.md)
* [Migration Guide](migration.md)
* [Examples](https://github.com/nuxt-community/auth-module/tree/dev/examples)
Expand Down
2 changes: 1 addition & 1 deletion docs/SUMMARY.md
Expand Up @@ -12,7 +12,7 @@
* [Providers](providers/README.md)
* [Auth0](providers/auth0.md)
* [Facebook](providers/facebook.md)
* [Github](providers/github.md)
* [GitHub](providers/github.md)
* [Google](providers/google.md)
* [Laravel Passport](providers/passport.md)
* API
Expand Down
2 changes: 1 addition & 1 deletion docs/providers/github.md
@@ -1,4 +1,4 @@
# Github
# GitHub

[Source Code](https://github.com/nuxt-community/auth-module/blob/dev/lib/providers/github.js)

Expand Down
2 changes: 1 addition & 1 deletion examples/demo/layouts/default.vue
Expand Up @@ -37,7 +37,7 @@ export default {
picture() {
return dotProp(this.$auth.user, 'picture') || // OpenID
dotProp(this.$auth.user, 'picture.data.url') || // Facebook graph API
dotProp(this.$auth.user, 'avatar_url') // Github
dotProp(this.$auth.user, 'avatar_url') // GitHub
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/demo/pages/login.vue
Expand Up @@ -63,7 +63,7 @@ export default {
{ key: 'auth0', name: 'Auth0', color: '#ec5425' },
{ key: 'google', name: 'Google', color: '#4284f4' },
{ key: 'facebook', name: 'Facebook', color: '#3c65c4' },
{ key: 'github', name: 'Github', color: '#202326' }
{ key: 'github', name: 'GitHub', color: '#202326' }
]),
redirect() {
return (
Expand Down

0 comments on commit eb7dc9e

Please sign in to comment.