From 53b64fb659ad3fb99b4b2f7383c5f73aa1904a72 Mon Sep 17 00:00:00 2001 From: Keen Yee Liau Date: Tue, 22 Dec 2020 10:40:33 -0800 Subject: [PATCH] docs: use kebab-case for CLI commands (#40240) Kebab-case is preferred over camelCase in Angular CLI. camelCase support is deprecated and will be removed eventually. PR Close #40240 --- aio/content/guide/file-structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/file-structure.md b/aio/content/guide/file-structure.md index 9c866218af..d3f2d5dbc9 100644 --- a/aio/content/guide/file-structure.md +++ b/aio/content/guide/file-structure.md @@ -138,7 +138,7 @@ If you intend to have multiple projects in a workspace, you can skip the initial The following command creates a workspace with all of the workspace-wide configuration files, but no root-level application. -ng new my-workspace --createApplication="false" +ng new my-workspace --create-application false You can then generate apps and libraries with names that are unique within the workspace.