From 0d9c5b7fd7dec374ec357581f721f5cdc828b7ae Mon Sep 17 00:00:00 2001 From: Joel Kronqvist Date: Tue, 5 Aug 2025 00:02:13 +0300 Subject: Changed project name --- src/type/display.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/type/display.rs') 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(), -- cgit v1.2.3