diff --git a/cl-structures/src/tree.rs b/cl-structures/src/tree.rs index 897dc31..d6f1c18 100644 --- a/cl-structures/src/tree.rs +++ b/cl-structures/src/tree.rs @@ -14,7 +14,7 @@ //! assert_eq!(tree.get(root).unwrap(), &"This is the root node") //! ``` -// #![allow(unused)] +// TODO: implement an Entry-style API for doing traversal algorithms pub use self::tree_ref::Ref; use std::ops::{Index, IndexMut};