From a60698f0e8da83ae16d4187bafb3702303b5803a Mon Sep 17 00:00:00 2001 From: relrelb Date: Sun, 4 Jul 2021 22:30:35 +0300 Subject: [PATCH] Fix some name stylings * nodejs -> Node.js * javascript -> JavaScript --- content/cli/v6/using-npm/scripts.md | 4 ++-- content/cli/v7/using-npm/scripts.md | 4 ++-- content/cli/v7/using-npm/workspaces.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/content/cli/v6/using-npm/scripts.md b/content/cli/v6/using-npm/scripts.md index 80f728fcf6f..e1d91330fde 100644 --- a/content/cli/v6/using-npm/scripts.md +++ b/content/cli/v6/using-npm/scripts.md @@ -260,8 +260,8 @@ Scripts are run by passing the line as a script argument to `sh`. If the script exits with a code other than 0, then this will abort the process. -Note that these script files don't have to be nodejs or even -javascript programs. They just have to be some kind of executable +Note that these script files don't have to be Node.js or even +JavaScript programs. They just have to be some kind of executable file. ### Hook Scripts diff --git a/content/cli/v7/using-npm/scripts.md b/content/cli/v7/using-npm/scripts.md index 4bece4aaef6..b413caa2feb 100644 --- a/content/cli/v7/using-npm/scripts.md +++ b/content/cli/v7/using-npm/scripts.md @@ -311,8 +311,8 @@ Scripts are run by passing the line as a script argument to `sh`. If the script exits with a code other than 0, then this will abort the process. -Note that these script files don't have to be nodejs or even -javascript programs. They just have to be some kind of executable +Note that these script files don't have to be Node.js or even +JavaScript programs. They just have to be some kind of executable file. ### Best Practices diff --git a/content/cli/v7/using-npm/workspaces.md b/content/cli/v7/using-npm/workspaces.md index f8f43ebceec..c4628cc1356 100644 --- a/content/cli/v7/using-npm/workspaces.md +++ b/content/cli/v7/using-npm/workspaces.md @@ -45,7 +45,7 @@ Workspaces are usually defined via the `workspaces` property of the Given the above `package.json` example living at a current working directory `.` that contains a folder named `workspace-a` that itself contains -a `package.json` inside it, defining a nodejs package, e.g: +a `package.json` inside it, defining a Node.js package, e.g: ``` .