Skip to content

Commit 12713c3

Browse files
committed
win/msi: Fix typos
1 parent 31b5d41 commit 12713c3

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

tools/msvs/msi/product.wxs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565

6666
<Feature Id="npm"
6767
Level="1"
68-
Title="NPM package manager"
69-
Description="Install NPM, the recommended package manager for Node.js.">
68+
Title="npm package manager"
69+
Description="Install npm, the recommended package manager for Node.js.">
7070
<ComponentRef Id="NpmCmdScript"/>
7171
<ComponentRef Id="NpmBashScript"/>
7272
<ComponentRef Id="NpmConfigurationFile"/>
@@ -83,18 +83,18 @@
8383
<Feature Id="EnvironmentPath"
8484
Level="1"
8585
Title="Add to PATH"
86-
Description="Add Node, NPM, and modules that were globally installed by NPM to the PATH environment variable.">
86+
Description="Add Node, npm, and modules that were globally installed by npm to the PATH environment variable.">
8787
<Feature Id="EnvironmentPathNode"
8888
Level="1"
89-
Title="Node and NPM"
90-
Description="Add Node and NPM (if installed) to the PATH environment variable.">
89+
Title="Node and npm"
90+
Description="Add Node and npm (if installed) to the PATH environment variable.">
9191
<ComponentRef Id="EnvironmentPathNode"/>
9292
</Feature>
9393

9494
<Feature Id="EnvironmentPathNpmModules"
9595
Level="1"
96-
Title="NPM modules"
97-
Description="Add modules that are installed globablly by NPM to the PATH environment variable. This option works for the current user only; other users need to update their PATH manually.">
96+
Title="npm modules"
97+
Description="Add modules that are installed globally by npm to the PATH environment variable. This option works for the current user only; other users need to update their PATH manually.">
9898
<ComponentRef Id="EnvironmentPathNpmModules"/>
9999
</Feature>
100100
</Feature>

tools/msvs/nodevars.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@echo off
22

3-
rem Ensure this Node.js and NPM are first in the PATH
3+
rem Ensure this Node.js and npm are first in the PATH
44
set PATH=%APPDATA%\npm;%~dp0;%PATH%
55

66
setlocal enabledelayedexpansion
@@ -12,7 +12,7 @@ for /F "usebackq delims=" %%v in (`%print_version%`) do set version=%%v
1212

1313
rem Print message.
1414
if exist npm.cmd (
15-
echo Your environment has been set up for using Node.js !version! and NPM.
15+
echo Your environment has been set up for using Node.js !version! and npm.
1616
) else (
1717
echo Your environment has been set up for using Node.js !version!.
1818
)

0 commit comments

Comments
 (0)