From 588901052dd93cc005fcdc28933a7fcef14734cf Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Fri, 28 Dec 2018 00:59:16 +0100 Subject: [PATCH] Fix typo in README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e425ee..4fa0465 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A PHP implementation of tree data structure. -It provides 4 different trees implementations. +It provides 5 different trees implementations. * **Node**: The base class. * **N-ary node**: (or K-ary tree) extends the base class and allows you to specify the capacity of a node, the maximum children a node can have. * **Value node**: extends the N-ary node and allows you to attach a value to the node.