From 73d1b9d846ece22134cd25726648a19c922c8a9a Mon Sep 17 00:00:00 2001 From: Sean Date: Thu, 20 Sep 2018 02:15:16 -0700 Subject: [PATCH] fix: correct typo in "Auth External API" example (#3919) ## Types of changes - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Description Corrected `crendentials` to `credentials` in the ["Auth External API" example](https://github.com/nuxt/nuxt.js/tree/dev/examples/auth-jwt). Text-only change. ## Checklist: - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. (PR: #) - [ ] I have added tests to cover my changes (if not applicable, please state why) - [x] All new and existing tests passed. --- examples/auth-jwt/pages/login.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/auth-jwt/pages/login.vue b/examples/auth-jwt/pages/login.vue index 958d310b6e..e39cee8082 100644 --- a/examples/auth-jwt/pages/login.vue +++ b/examples/auth-jwt/pages/login.vue @@ -9,7 +9,7 @@ -

The crendentials are not verified for the example purpose.

+

The credentials are not verified for the example purpose.