diff --git a/bin/ng b/bin/ng index ffc6c2b830..34f0bd650b 100755 --- a/bin/ng +++ b/bin/ng @@ -13,14 +13,14 @@ resolve('angular-cli', { basedir: process.cwd() }, function (error, projectLocalCli) { var cli; if (error) { - // If there is an error, resolve could not find the ember-cli + // If there is an error, resolve could not find the ng-cli // library from a package.json. Instead, include it from a relative // path to this script file (which is likely a globally installed - // npm package). Most common cause for hitting this is `ember new` + // npm package). Most common cause for hitting this is `ng new` cli = require('../lib/cli'); } else { // No error implies a projectLocalCli, which will load whatever - // version of ember-cli you have installed in a local package.json + // version of ng-cli you have installed in a local package.json cli = require(projectLocalCli); }