From 1572a57f2287855ef8731ecd5543679b479562bf Mon Sep 17 00:00:00 2001 From: plin <116143761+plin349@users.noreply.github.com> Date: Sun, 5 Nov 2023 10:45:47 -0500 Subject: [PATCH] fix grammar - 'conflict' instead of 'confliction' --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8494968..382bef9 100644 --- a/README.md +++ b/README.md @@ -166,14 +166,14 @@ Replace the steps above and build you first plugin in 30 seconds! releasepage, // URL to releases(`.xpi`) updaterdf, // URL to update.json addonName, // name to be displayed in the plugin manager - addonID, // ID to avoid confliction. IMPORTANT! + addonID, // ID to avoid conflict. IMPORTANT! addonRef, // e.g. Element ID prefix addonInstance // the plugin's root instance: Zotero.${addonInstance} } } ``` - > Be careful to set the addonID and addonRef to avoid confliction. + > Be careful to set the addonID and addonRef to avoid conflict. - Run `npm install` to set up the plugin and install dependencies. If you don't have NodeJS installed, please download it [here](https://nodejs.org/en/); - Run `npm run build` to build the plugin in production mode. Run `npm run build-dev` to build the plugin in development mode. The xpi for installation and the built code is under `build` folder.