From a67eb07f1789cb33872010c0e0b43e4d3d17e17e Mon Sep 17 00:00:00 2001 From: Tyler Date: Thu, 4 May 2017 14:17:28 -0500 Subject: [PATCH] fix(@angular/cli): Update README.md project generation text. (#5958) angular-cli/packages/@angular/cli/utilities/validate-project-name.ts looks for hypen(-) rather than the listed underscore(_). --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a27ef51a5a0b..d4253fc65828 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,8 @@ ng help ### Generating and serving an Angular project via a development server ```bash -ng new PROJECT_NAME -cd PROJECT_NAME +ng new PROJECT-NAME +cd PROJECT-NAME ng serve ``` Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.