From e4b202e7d9d426c7225d16a0d935692576647269 Mon Sep 17 00:00:00 2001 From: Pascal Borreli Date: Fri, 18 Nov 2016 04:02:43 +0100 Subject: [PATCH] Fixed typos --- README.md | 2 +- examples/global-css/README.md | 2 +- examples/plugins-vendor/README.md | 2 +- examples/plugins-vendor/plugins/vue-notifications.js | 2 +- lib/app/server.js | 2 +- lib/build/webpack/base.config.js | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4c32ccac9b..d6d52de2af 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ const Nuxt = require('nuxt') const options = { routes: [], // see examples/custom-routes - css: ['/dist/boostrap.css'] // see examples/global-css + css: ['/dist/bootstrap.css'] // see examples/global-css store: true // see examples/vuex-store plugins: ['public/plugin.js'], // see examples/plugins-vendor loading: false or { color: 'blue', failedColor: 'red' } or 'components/my-spinner' // see examples/custom-loading diff --git a/examples/global-css/README.md b/examples/global-css/README.md index 3302e91a94..5b70bd5591 100644 --- a/examples/global-css/README.md +++ b/examples/global-css/README.md @@ -4,7 +4,7 @@ ## Usage -In `nuxt.config.js` file, add the CSS ressources: +In `nuxt.config.js` file, add the CSS resources: ```js const { resolve } = require('path') diff --git a/examples/plugins-vendor/README.md b/examples/plugins-vendor/README.md index 0c268b0d5c..5ac7416a2d 100644 --- a/examples/plugins-vendor/README.md +++ b/examples/plugins-vendor/README.md @@ -1,4 +1,4 @@ -# Using external modules and plugings with nuxt.js +# Using external modules and plugins with nuxt.js ## Configuration: `build.vendor` diff --git a/examples/plugins-vendor/plugins/vue-notifications.js b/examples/plugins-vendor/plugins/vue-notifications.js index 93a21f1e60..2b2ff5e701 100644 --- a/examples/plugins-vendor/plugins/vue-notifications.js +++ b/examples/plugins-vendor/plugins/vue-notifications.js @@ -13,7 +13,7 @@ if (process.BROWSER) { // Binding for methods .success(), .error() and etc. You can specify and map your own methods here. // Required to pipe our outout to UI library (mini-toastr in example here) - // All not-specifyed events (types) would be piped to output in console. + // All not-specified events (types) would be piped to output in console. const options = { success: toast, error: toast, diff --git a/lib/app/server.js b/lib/app/server.js index 37ff92389d..77983680fa 100644 --- a/lib/app/server.js +++ b/lib/app/server.js @@ -58,7 +58,7 @@ export default context => { <% } %> return promise .then(() => { - // Call data & fecth hooks on components matched by the route. + // Call data & fetch hooks on components matched by the route. return Promise.all(Components.map((Component) => { let promises = [] if (!Component.options) { diff --git a/lib/build/webpack/base.config.js b/lib/build/webpack/base.config.js index 1f1fd35c9b..1b06ed0794 100644 --- a/lib/build/webpack/base.config.js +++ b/lib/build/webpack/base.config.js @@ -8,7 +8,7 @@ const { urlJoin } = require('../../utils') |-------------------------------------------------------------------------- | Webpack Shared Config | -| This is the config which is extented by the server and client +| This is the config which is extended by the server and client | webpack config files |-------------------------------------------------------------------------- */