From c58c7a8a62a119c4086ce33929429bb8628dbdf2 Mon Sep 17 00:00:00 2001 From: Drake Bott <37636210+bottd@users.noreply.github.com> Date: Thu, 18 Apr 2019 20:21:28 -0600 Subject: [PATCH] Correct spelling in Binary Search Tree description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fde8d60a..9cf2a7f9 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ We are covering the following data structures. 2. **Binary Search Trees** (BST): same as binary tree, but the - nodes value keep this order `left < parent < rigth`. + nodes value keep this order `left < parent < right`. [Code](https://github.com/amejiarosario/algorithms.js/blob/master/src/data-structures/trees/binary-search-tree.js) | [BST Time complexity](https://github.com/amejiarosario/dsa.js/blob/master/book/chapters/tree--binary-search-tree.adoc#tree-complexity)