Skip to content

Commit

Permalink
fix(@angular/cli): typo in error message
Browse files Browse the repository at this point in the history
(cherry picked from commit 36ade0f)
  • Loading branch information
RiccardoBracci authored and dgp1130 committed Feb 11, 2020
1 parent ae58a65 commit 7f0b9b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular/cli/bin/ng
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ try {
var version = process.versions.node.split('.').map(part => Number(part));
if (version[0] < 10 || version[0] === 11 || (version[0] === 10 && version[1] < 13)) {
process.stderr.write(
'Node.js version ' + process.verson + ' detected.\n' +
'Node.js version ' + process.version + ' detected.\n' +
'The Angular CLI requires a minimum Node.js version of either v10.13 or v12.0.\n\n' +
'Please update your Node.js version or visit https://nodejs.org/ for additional instructions.\n',
);
Expand Down

0 comments on commit 7f0b9b6

Please sign in to comment.