From 273c883eed3ba8a0554e4ab8d4817c54842f6a9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Vaux?= Date: Mon, 15 Jun 2020 09:58:49 +0200 Subject: [PATCH] docs: Fix a few typos in the 3rd party client guide (#6656) --- docs/v3.x/guides/client.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/v3.x/guides/client.md b/docs/v3.x/guides/client.md index 72027c737e..9ef2c3db4c 100644 --- a/docs/v3.x/guides/client.md +++ b/docs/v3.x/guides/client.md @@ -8,7 +8,7 @@ This guide could also be used to setup an Axios client instance. ## Installation -First you will have to install the client package in your application by running one of the following command. +First you will have to install the client package in your application by running one of the following commands: :::: tabs @@ -26,7 +26,7 @@ First you will have to install the client package in your application by running To init the client, we will use the [hooks system](../concepts/hooks.md). Hooks let you add new features in your Strapi application. -Hooks are loaded one time, at the server start. +Hooks are loaded once at server start. Lets create our GitHub hook. @@ -107,7 +107,7 @@ And here it is. You can now use `strapi.services.github` everywhere in your code to use the GitHub client. -To simply test if it works, lets update the `bootstrap.js` function to log your GitHub profile. +To simply test if it works, let's update the `bootstrap.js` function to log your GitHub profile. **Path —** `./config/functions/bootstrap.js`