summaryrefslogtreecommitdiff
path: root/tools/msvs
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-03-09 09:22:00 -0800
committerisaacs <i@izs.me>2013-03-09 09:22:00 -0800
commit12713c3bb781c854f347ea9a04e344e980bea2f1 (patch)
tree5ee03e8e20917bec5e7b6aa97297ae99ba199c4d /tools/msvs
parent31b5d41f57cb717c14a29d789f1c0c1bb40a8bca (diff)
downloadandroid-node-v8-12713c3bb781c854f347ea9a04e344e980bea2f1.tar.gz
android-node-v8-12713c3bb781c854f347ea9a04e344e980bea2f1.tar.bz2
android-node-v8-12713c3bb781c854f347ea9a04e344e980bea2f1.zip
win/msi: Fix typos
Diffstat (limited to 'tools/msvs')
-rwxr-xr-xtools/msvs/msi/product.wxs14
-rw-r--r--tools/msvs/nodevars.bat4
2 files changed, 9 insertions, 9 deletions
diff --git a/tools/msvs/msi/product.wxs b/tools/msvs/msi/product.wxs
index 2e8ef742b5..baaa0148be 100755
--- a/tools/msvs/msi/product.wxs
+++ b/tools/msvs/msi/product.wxs
@@ -65,8 +65,8 @@
<Feature Id="npm"
Level="1"
- Title="NPM package manager"
- Description="Install NPM, the recommended package manager for Node.js.">
+ Title="npm package manager"
+ Description="Install npm, the recommended package manager for Node.js.">
<ComponentRef Id="NpmCmdScript"/>
<ComponentRef Id="NpmBashScript"/>
<ComponentRef Id="NpmConfigurationFile"/>
@@ -83,18 +83,18 @@
<Feature Id="EnvironmentPath"
Level="1"
Title="Add to PATH"
- Description="Add Node, NPM, and modules that were globally installed by NPM to the PATH environment variable.">
+ Description="Add Node, npm, and modules that were globally installed by npm to the PATH environment variable.">
<Feature Id="EnvironmentPathNode"
Level="1"
- Title="Node and NPM"
- Description="Add Node and NPM (if installed) to the PATH environment variable.">
+ Title="Node and npm"
+ Description="Add Node and npm (if installed) to the PATH environment variable.">
<ComponentRef Id="EnvironmentPathNode"/>
</Feature>
<Feature Id="EnvironmentPathNpmModules"
Level="1"
- Title="NPM modules"
- 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.">
+ Title="npm modules"
+ 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.">
<ComponentRef Id="EnvironmentPathNpmModules"/>
</Feature>
</Feature>
diff --git a/tools/msvs/nodevars.bat b/tools/msvs/nodevars.bat
index b79bc823bc..064f83cbc8 100644
--- a/tools/msvs/nodevars.bat
+++ b/tools/msvs/nodevars.bat
@@ -1,6 +1,6 @@
@echo off
-rem Ensure this Node.js and NPM are first in the PATH
+rem Ensure this Node.js and npm are first in the PATH
set PATH=%APPDATA%\npm;%~dp0;%PATH%
setlocal enabledelayedexpansion
@@ -12,7 +12,7 @@ for /F "usebackq delims=" %%v in (`%print_version%`) do set version=%%v
rem Print message.
if exist npm.cmd (
- echo Your environment has been set up for using Node.js !version! and NPM.
+ echo Your environment has been set up for using Node.js !version! and npm.
) else (
echo Your environment has been set up for using Node.js !version!.
)