diff options
Diffstat (limited to 'src/type/display.rs')
-rw-r--r-- | src/type/display.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/type/display.rs b/src/type/display.rs index 68d7fec..2fca5f9 100644 --- a/src/type/display.rs +++ b/src/type/display.rs @@ -9,7 +9,7 @@ impl fmt::Display for Type { /// /// Examples: /// ```rust - /// use melisp::r#type::{Type::*, util::*}; + /// use myslip::r#type::{Type::*, util::*}; /// assert_eq!(Integer.to_string(), "Int".to_string()); /// assert_eq!(arr(Integer, Integer).to_string(), "(Int -> Int)".to_string()); /// assert_eq!(List(vec![Integer, Integer, Integer]).to_string(), "(Int Int Int)".to_string()); @@ -37,8 +37,8 @@ impl fmt::Display for TypeError { /// /// Examples: /// ```rust - /// use melisp::r#type::{TypeError::*, Type::*, util::*}; - /// use melisp::sexp::{SExp, SExp::*, SLeaf::*, util::*}; + /// use myslip::r#type::{TypeError::*, Type::*, util::*}; + /// use myslip::sexp::{SExp, SExp::*, SLeaf::*, util::*}; /// /// assert_eq!( /// UndefinedVariable(String::from("x")).to_string(), |