diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-05 00:02:13 +0300 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-05 00:02:13 +0300 |
commit | 0d9c5b7fd7dec374ec357581f721f5cdc828b7ae (patch) | |
tree | 132905830677e7170c03210f8b849dd43040aee6 /src/sexp/util.rs | |
parent | fdae943090463526423f5e43e72cd2f0e8147a1b (diff) | |
download | myslip-0d9c5b7fd7dec374ec357581f721f5cdc828b7ae.tar.gz myslip-0d9c5b7fd7dec374ec357581f721f5cdc828b7ae.zip |
Changed project name
Diffstat (limited to 'src/sexp/util.rs')
-rw-r--r-- | src/sexp/util.rs | 2 |
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)]) |