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 ///