From 16ace0ed5d3a190fe49f9d13c02b63d30f84d09a Mon Sep 17 00:00:00 2001 From: Jim Laurie Date: Wed, 14 Feb 2018 17:14:11 +0100 Subject: [PATCH] Fix indent configs js examples --- docs/3.x.x/en/configurations/configurations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/3.x.x/en/configurations/configurations.md b/docs/3.x.x/en/configurations/configurations.md index 053017c511..0dac34a3d7 100644 --- a/docs/3.x.x/en/configurations/configurations.md +++ b/docs/3.x.x/en/configurations/configurations.md @@ -386,7 +386,7 @@ Configuration files are not multi server friendly. So we create a data store for - `name` (string): You have to set the plugin or api name if `type` is `api` or `plugin`. - `key` (string, required): The name of the key you want to store. -``` +```js // strapi.store(object).get(object); // create reusable plugin store variable @@ -403,7 +403,7 @@ await pluginStore.get({key: 'grant'}); - `value` (any, required): The value you want to store. - ``` + ```js // strapi.store(object).set(object); // create reusable plugin store variable