From c5ce4e62c6270f899d8bf71ec76bdf4c6547f91c Mon Sep 17 00:00:00 2001 From: Preetham Viswanathan Date: Fri, 19 Oct 2018 05:21:00 -0400 Subject: [PATCH] docs: fix code example to ensure consistency in file (#26577) PR Close #26577 --- aio/content/cli/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aio/content/cli/index.md b/aio/content/cli/index.md index 91de0ab7d9..e84c05f3ad 100644 --- a/aio/content/cli/index.md +++ b/aio/content/cli/index.md @@ -74,7 +74,10 @@ Command syntax is shown as follows: * Option names are prefixed with a double dash (--). Option aliases are prefixed with a single dash (-). Arguments are not prefixed. - For example: `ng build my-app -c production` + For example: + + ng build my-app -c production + * Typically, the name of a generated artifact can be given as an argument to the command or specified with the --name option.