From cba48bb1da8abf334c4bbae9eeedca0dd0c80221 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Tue, 22 Feb 2022 02:30:42 +0000 Subject: [PATCH] Update documentation --- src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index eb50eb7..b7a2ed1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -248,8 +248,7 @@ pub struct RecursiveBST { /// /// # Important /// -/// This should be preferred against [RecursiveBST] as this should generally be -/// more performant. +/// This should be preferred over [RecursiveBST] for reasons listed in crate level documentation. #[derive(Debug)] pub struct IterativeBST { root: HeapNode,