Skip to content

Commit 4e548f6

Browse files
米国梁andrewseguin
authored andcommitted
fix typo (#11672)
* fix typo * fix typo
1 parent 94f4ce1 commit 4e548f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/tree/data-source/nested-data-source.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class MatTreeNestedDataSource<T> extends DataSource<T> {
2121
_data = new BehaviorSubject<T[]>([]);
2222

2323
/**
24-
* Data for the nested treee
24+
* Data for the nested tree
2525
*/
2626
get data() { return this._data.value; }
2727
set data(value: T[]) { this._data.next(value); }

0 commit comments

Comments
 (0)