From 6ee4737400a1093253a3e5c400796cbca407bdd8 Mon Sep 17 00:00:00 2001 From: Ammar Hasan Date: Fri, 11 May 2018 11:18:47 +0200 Subject: [PATCH] docs: Add name flag to commands in Schematic guide --- guides/schematics.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guides/schematics.md b/guides/schematics.md index 4c42927b04e8..5e563f22bb28 100644 --- a/guides/schematics.md +++ b/guides/schematics.md @@ -35,7 +35,7 @@ a toolbar with the app name and the side nav responsive based on Material breakpoints. ``` -ng generate @angular/material:material-nav +ng generate @angular/material:material-nav --name ``` ### Dashboard Schematic @@ -43,7 +43,7 @@ The dashboard schematic will create a new component that contains a dynamic grid list of cards. ``` -ng generate @angular/material:material-dashboard +ng generate @angular/material:material-dashboard --name ``` ### Table Schematic @@ -51,5 +51,5 @@ The table schematic will create a new table component pre-configured with a datasource for sorting and pagination. ``` -ng generate @angular/material:material-table +ng generate @angular/material:material-table --name ```