win/msi: Fix typos
authorisaacs <i@izs.me>
Sat, 9 Mar 2013 17:22:00 +0000 (09:22 -0800)
committerisaacs <i@izs.me>
Sat, 9 Mar 2013 17:22:00 +0000 (09:22 -0800)
tools/msvs/msi/product.wxs
tools/msvs/nodevars.bat

index 2e8ef74..baaa014 100755 (executable)
@@ -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"/>
     <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>
index b79bc82..064f83c 100644 (file)
@@ -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!.
 )