aboutsummaryrefslogtreecommitdiff
path: root/src/sexp/subst.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sexp/subst.rs')
-rw-r--r--src/sexp/subst.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sexp/subst.rs b/src/sexp/subst.rs
index abab614..87f9b50 100644
--- a/src/sexp/subst.rs
+++ b/src/sexp/subst.rs
@@ -8,7 +8,7 @@ impl SExp {
/// named `name` with the given `value`
/// in this s-expression.
/// ```rust
- /// use melisp::sexp::{SExp::*, SLeaf::*, util::*};
+ /// use myslip::sexp::{SExp::*, SLeaf::*, util::*};
///
/// assert_eq!(
/// scons(Add, scons(var("a"), var("b"))).subst("b", &scons(Sub, scons(2, 1))),