diff --git a/README.md b/README.md index 91d074f..3b5f8eb 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ All elements within the Binary Search Trees _must_ implement the [Ord](https://doc.rust-lang.org/core/cmp/trait.Ord.html) trait. It is also important to note that [RecursiveBST](src/lib.rs) is more likely to `blow the stack.` -For more information on why that is the case, please read have a look at +For more information on why that is the case, please have a look at [The Story of Tail Call Optimizations in Rust.](https://seanchen1991.github.io/posts/tco-story/) ## Personal Goals diff --git a/src/lib.rs b/src/lib.rs index 5221882..673b45e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! All elements within the Binary Search Trees _must_ implement the [Ord] trait. //! //! It is also important to note that [RecursiveBST] is more likely to `blow the stack.` -//! For more information on why that is the case, please read have a look at +//! For more information on why that is the case, please have a look at //! [The Story of Tail Call Optimizations in Rust.](https://seanchen1991.github.io/posts/tco-story/) //! //! ## Author Notes