Skip to content

docs(schematics): add grammar fixes to schematics guide #12532

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions guides/schematics.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,33 @@ creating Material applications easier.
Schematics come packaged with Angular Material, so once you have
installed the npm package, they will be available via the Angular CLI.

If you run it will automatically install Angular Material for you
Using the command below will automatically install Angular Material for you
and run the install schematic.

```
ng add @angular/material
```

The install schematic will help you quickly add Material to a new project.
The install schematic will help you to quickly add Material to a new project.
This schematic will:

- Ensure project dependencies in `package.json`
- Ensure project dependencies in your app module
- Adds Prebuilt or Setup Custom Theme
- Adds Roboto fonts to your index.html
- Ensure project dependencies are placed in `package.json`
- Ensure project dependencies are placed in your app module
- Add Prebuilt or Setup Custom Theme
- Add Roboto fonts to your index.html
- Apply simple CSS reset to body


## Generator Schematics
In addition to the install schematic Angular Material has three schematics it comes packaged with:
In addition to the install schematic, Angular Material has three schematics it comes packaged with:

- Navigation
- Dashboard
- Table

### Navigation Schematic
The navigation schematic will create a new component that includes
a toolbar with the app name and the side nav responsive based on Material
a toolbar with the app name and a responsive side nav based on Material
breakpoints.

```
Expand Down