aboutsummaryrefslogtreecommitdiff
path: root/src/sexp/util.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sexp/util.rs')
-rw-r--r--src/sexp/util.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sexp/util.rs b/src/sexp/util.rs
index 0818e6b..f01dab9 100644
--- a/src/sexp/util.rs
+++ b/src/sexp/util.rs
@@ -40,7 +40,7 @@ impl SExp {
/// lists aren't Nil-terminated.
///
/// ```rust
- /// use melisp::sexp::{SExp::*, SLeaf::*, util::*};
+ /// use myslip::sexp::{SExp::*, SLeaf::*, util::*};
/// assert_eq!(
/// scons(1, scons(2, scons(3, Nil))).into_vec(),
/// Ok(vec![Int(1), Int(2), Int(3)])