We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f4ce1 commit 4e548f6Copy full SHA for 4e548f6
src/lib/tree/data-source/nested-data-source.ts
@@ -21,7 +21,7 @@ export class MatTreeNestedDataSource<T> extends DataSource<T> {
21
_data = new BehaviorSubject<T[]>([]);
22
23
/**
24
- * Data for the nested treee
+ * Data for the nested tree
25
*/
26
get data() { return this._data.value; }
27
set data(value: T[]) { this._data.next(value); }
0 commit comments