From 285187642a60239bc2f0ce13a108d67116ce116a Mon Sep 17 00:00:00 2001 From: Josep Jaume Rey Date: Wed, 21 Nov 2018 21:22:20 +0100 Subject: [PATCH] docs: improve wording (#135) --- template/nuxt/middleware/README.md | 2 +- template/nuxt/pages/README.md | 2 +- template/nuxt/plugins/README.md | 2 +- template/nuxt/store/README.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/template/nuxt/middleware/README.md b/template/nuxt/middleware/README.md index 009e48c5..01595ded 100644 --- a/template/nuxt/middleware/README.md +++ b/template/nuxt/middleware/README.md @@ -3,6 +3,6 @@ **This directory is not required, you can delete it if you don't want to use it.** This directory contains your application middleware. -The middleware lets you define custom function to be ran before rendering a page or a group of pages (layouts). +Middleware let you define custom functions that can be run before rendering either a page or a group of pages. More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing#middleware). diff --git a/template/nuxt/pages/README.md b/template/nuxt/pages/README.md index 7a6cffa6..1d5d48b2 100644 --- a/template/nuxt/pages/README.md +++ b/template/nuxt/pages/README.md @@ -1,6 +1,6 @@ # PAGES This directory contains your Application Views and Routes. -The framework reads all the `*.vue` files inside this directory and create the router of your application. +The framework reads all the `*.vue` files inside this directory and creates the router of your application. More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing). diff --git a/template/nuxt/plugins/README.md b/template/nuxt/plugins/README.md index 0d227f3f..ca1f9d8a 100644 --- a/template/nuxt/plugins/README.md +++ b/template/nuxt/plugins/README.md @@ -2,6 +2,6 @@ **This directory is not required, you can delete it if you don't want to use it.** -This directory contains your Javascript plugins that you want to run before mounting the root Vue.js application. +This directory contains Javascript plugins that you want to run before mounting the root Vue.js application. More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/plugins). diff --git a/template/nuxt/store/README.md b/template/nuxt/store/README.md index 111fea1b..1972d277 100644 --- a/template/nuxt/store/README.md +++ b/template/nuxt/store/README.md @@ -5,6 +5,6 @@ This directory contains your Vuex Store files. Vuex Store option is implemented in the Nuxt.js framework. -Creating a file in this directory activate the option in the framework automatically. +Creating a file in this directory automatically activates the option in the framework. More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store).