From 111ea3dbd30a5c596143a3b69bfd356bbc870d7a Mon Sep 17 00:00:00 2001 From: Arpit Goyal <50814175+Arpitgoyalgg@users.noreply.github.com> Date: Sat, 9 Mar 2024 21:32:29 +0530 Subject: [PATCH] Update README.md (#1093) --- src/data-structures/tree/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data-structures/tree/README.md b/src/data-structures/tree/README.md index 7eb7ec1db..e492257d3 100644 --- a/src/data-structures/tree/README.md +++ b/src/data-structures/tree/README.md @@ -23,7 +23,7 @@ together with a list of references to nodes (the "children"), with the constraints that no reference is duplicated, and none points to the root. -A simple unordered tree; in this diagram, the node labeled 7 has +A simple unordered tree; in this diagram, the node labeled 3 has two children, labeled 2 and 6, and one parent, labeled 2. The root node, at the top, has no parent.