From 36ebf3e9623f2ee8eb938bc6671fa9b73b58e8c8 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Thu, 24 Feb 2022 04:23:35 +0000 Subject: [PATCH] Make text bold --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 4e8ada1..6decc50 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,7 +14,7 @@ //! //! That being said, there are some areas I would love to improve upon/include: //! - Write idiomatic code. -//! - Effectively use [macro_rules!] to reduce large portions of repetitive code. +//! - Effectively use **macro_rules!** to reduce large portions of repetitive code. //! - Implement a **pretty_print()** function to display the binary search trees nicely. //! - Implement [Drop] trait for iterative node cleanup. //! - Pre-allocate space on the heap for nodes to reduce inefficiency of inserts.