From d801a4a7f1d5cb870dba62cccb4fbeb07fcca1f6 Mon Sep 17 00:00:00 2001 From: davhojt Date: Wed, 8 Jun 2022 19:04:12 +0300 Subject: [PATCH] docs(flat_tree) correct grammar --- subjects/flat_tree/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/flat_tree/README.md b/subjects/flat_tree/README.md index 786456a40..73a0da427 100644 --- a/subjects/flat_tree/README.md +++ b/subjects/flat_tree/README.md @@ -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