From 8512affc592e6e0331ca2ff03b469d22fc197fb0 Mon Sep 17 00:00:00 2001 From: tpkeeper Date: Wed, 6 May 2020 18:35:44 +0800 Subject: [PATCH] readme: remove duplicate word --- database/internal/treap/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/internal/treap/README.md b/database/internal/treap/README.md index ee49ef9b..f5314b4a 100644 --- a/database/internal/treap/README.md +++ b/database/internal/treap/README.md @@ -8,7 +8,7 @@ treap Package treap implements a treap data structure that is used to hold ordered key/value pairs using a combination of binary search tree and heap semantics. It is a self-organizing and randomized data structure that doesn't require -complex operations to to maintain balance. Search, insert, and delete +complex operations to maintain balance. Search, insert, and delete operations are all O(log n). Both mutable and immutable variants are provided. The mutable variant is typically faster since it is able to simply update the