docs(flat_tree) correct grammar

This commit is contained in:
davhojt 2022-06-08 19:04:12 +03:00 committed by Dav Hojt
parent ef9cee5a31
commit d801a4a7f1
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
### Instructions
- Define the functions `flatten_tree` which receives a `std::collections::BTreeSet` and returns a new `Vec` with the elements of the binary tree in order.
Create the `flatten_tree` **function** which receives a `std::collections::BTreeSet` and returns a new `Vec` with the elements of the binary tree in order.
### Expected function