Skip to content

Commit 98aa699

Browse files
araslanovmmalerba
authored andcommitted
Fixed double quotes in table.md (#15910)
Changed double quotes from ”” to "" so that copied snippet works out of the box.
1 parent 35fece8 commit 98aa699

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/material/table/table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The simplest way to provide data to the table is by passing a data array to the
1919
input. The table will take the array and render a row for each object in the data array.
2020

2121
```html
22-
<table mat-table [dataSource]=myDataArray>
22+
<table mat-table [dataSource]="myDataArray">
2323
...
2424
</table>
2525
```

0 commit comments

Comments
 (0)