From 1f78b486625d523625ab717ca5bd8560221fe123 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Thu, 24 Feb 2022 04:09:38 +0000 Subject: [PATCH] Update documentation --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 81d6bff..fe8319e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -231,7 +231,7 @@ pub trait BinarySearchTree { /// Removes and returns the maximum element from the tree or `None` if tree is empty. fn remove_max(&mut self) -> Option; - /// Returns references to the elements of the tree in **ascending order.**` + /// Returns references to the elements of the tree in **ascending order.** /// /// # Important ///