diff options
Diffstat (limited to 'src/sexp/step.rs')
-rw-r--r-- | src/sexp/step.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sexp/step.rs b/src/sexp/step.rs index 1ab0291..ee76ebf 100644 --- a/src/sexp/step.rs +++ b/src/sexp/step.rs @@ -10,7 +10,7 @@ impl SExp { /// Addition, subtraction, multiplication and division /// are supported. /// ```rust - /// use melisp::sexp::{SExp::*, SLeaf::*, util::*}; + /// use myslip::sexp::{SExp::*, SLeaf::*, util::*}; /// /// assert_eq!( /// scons(Add, scons(1, scons(1, Nil))).step(), @@ -35,7 +35,7 @@ impl SExp { /// /// Division truncates the decimals. /// ```rust - /// use melisp::sexp::{SExp::*, SLeaf::*, util::*}; + /// use myslip::sexp::{SExp::*, SLeaf::*, util::*}; /// /// assert_eq!( /// scons(Div, scons(5, scons(2, Nil))).step(), @@ -45,7 +45,7 @@ impl SExp { /// /// Also, addition and multiplication can take more than two arguments: /// ```rust - /// use melisp::sexp::{SExp::*, SLeaf::*, util::*}; + /// use myslip::sexp::{SExp::*, SLeaf::*, util::*}; /// /// assert_eq!( /// scons(Add, scons(1, scons(2, scons(3, Nil)))).step(), @@ -61,7 +61,7 @@ impl SExp { /// Here's an example of a bit more complicated expression /// from wikipedias article on s-expressions. /// ```rust - /// use melisp::sexp::{SExp::*, SLeaf::*, util::*}; + /// use myslip::sexp::{SExp::*, SLeaf::*, util::*}; /// /// fn main() { /// let exp = scons( @@ -92,7 +92,7 @@ impl SExp { /// is evaluated to values, but they are not passed /// to the operator after that. /// ```rust - /// use melisp::sexp::{SExp::*, SLeaf::*, util::*}; + /// use myslip::sexp::{SExp::*, SLeaf::*, util::*}; /// assert_eq!( /// scons(Quote, scons(1, scons(2, Nil))).step(), /// Ok(scons(Quote, scons(1, scons(2, Nil)))) |