Skip to content

Commit d131ce9

Browse files
Merge pull request #4796 from syncfusion-content/905323-TreeViewDev
905323-TreeView: Corrected the typos.
2 parents 346f9ad + 7a03a00 commit d131ce9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blazor/treeview/searching-and-filtering.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ The Blazor TreeView component allows for searching and filtering of TreeView nod
198198
else
199199
{
200200
DataSource = GetData();
201-
// Filter all the nodes of the Serached ID.
201+
// Filter all the nodes of the Searched ID.
202202
List<Listdata> filteredValues = DataSource.FindAll(e => e.Name.ToString().StartsWith(eventArgs.Value));
203203
List<Listdata> filteredDataSource = new List<Listdata>();
204204
Listdata data = new Listdata();
@@ -222,7 +222,7 @@ The Blazor TreeView component allows for searching and filtering of TreeView nod
222222
filteredDataSource.Add(data);
223223
}
224224
}
225-
// Update the TreeView based on the searched ID vallue.
225+
// Update the TreeView based on the searched ID value.
226226
ListDataSource = filteredDataSource;
227227
isFiltered = true;
228228
}

0 commit comments

Comments
 (0)