Skip to content

Commit c6b6432

Browse files
rafaelss95andrewseguin
authored andcommitted
docs(mdc-chips): incorrect closing tag (#20251)
(cherry picked from commit bc91087)
1 parent 767b7f7 commit c6b6432

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/material-experimental/mdc-chips/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ Assuming your application is already up and running using Angular Material, you
3939
```
4040

4141
4. Use the chips in your component's template:
42-
43-
```html
42+
43+
```html
4444
<mat-chip-set>
4545
<mat-chip> Chip 1 </mat-chip>
4646
<mat-chip> Chip 2 </mat-chip>
4747
</mat-chip-set>
48-
```
49-
48+
```
49+
5050
5. Add the theme mixins to your Sass:
5151

5252
```scss
@@ -63,7 +63,7 @@ Assuming your application is already up and running using Angular Material, you
6363
));
6464

6565

66-
@include mat-mdc-chips-theme($candy-app-theme);
66+
@include mat-mdc-chips-theme($candy-app-theme);
6767
```
6868

6969
## API differences
@@ -72,14 +72,14 @@ The API for the MDC-based chips are mostly the same as the current chips impleme
7272
one notable difference is that the names of the container and chips have been changed to clarify
7373
when and how they should be used.
7474

75-
The most basic container that you can use for the chips is with the `<mat-chip-set>` containing a
75+
The most basic container that you can use for the chips is with the `<mat-chip-set>` containing a
7676
list of `<mat-chip>`:
7777

7878
```html
7979
<mat-chip-set>
80-
<mat-chip> John </mat-basic-chip>
81-
<mat-chip> Paul </mat-basic-chip>
82-
<mat-chip> James </mat-basic-chip>
80+
<mat-chip> John </mat-chip>
81+
<mat-chip> Paul </mat-chip>
82+
<mat-chip> James </mat-chip>
8383
</mat-chip-set>
8484
```
8585

0 commit comments

Comments
 (0)