Fix docs links

This commit is contained in:
Pierre Burgy 2017-10-13 16:37:58 +02:00
parent 4cfbe3a952
commit 06c3d7d852
2 changed files with 4 additions and 4 deletions

View File

@ -170,7 +170,7 @@ strapi generate:plugin <name>
Example: `strapi generate:plugin user` will create the plugin at `./plugins/user`.
Please refer to the [plugins documentation](.../plugins/development.md) to know more.
Please refer to the [plugins documentation](../plugins/development.md) to know more.
***
@ -198,7 +198,7 @@ options: [--dev]
> **Note: You have to restart the server to load the plugin into your project.**
Please refer to the [plugins documentation](.../plugins/development.md) to know more.
Please refer to the [plugins documentation](../plugins/quick-start.md) to know more.
***
@ -215,7 +215,7 @@ strapi uninstall <name>
Example: `strapi uninstall content-type-builder` will remove the folder at `./plugins/content-type-builder`.
Please refer to the [plugins documentation](.../plugins/development.md) to know more.
Please refer to the [plugins documentation](../plugins/quick-start.md) to know more.
***

View File

@ -5,7 +5,7 @@ See the [services concept](../concepts/concepts.md#services) for details.
## How to create a service?
There is two ways to create a service.
- Using the CLI `strapi generate:service user`. Read the [CLI documentation](./cli/CLI.md) for more information.
- Using the CLI `strapi generate:service user`. Read the [CLI documentation](../cli/CLI.md) for more information.
- Manually create a JavaScript file named `User.js` in `./api/**/services/`.
#### Example