aboutsummaryrefslogtreecommitdiff
path: root/src/type/display.rs
diff options
context:
space:
mode:
authorJoel Kronqvist <joel.kronqvist@iki.fi>2025-08-05 00:02:13 +0300
committerJoel Kronqvist <joel.kronqvist@iki.fi>2025-08-05 00:02:13 +0300
commit0d9c5b7fd7dec374ec357581f721f5cdc828b7ae (patch)
tree132905830677e7170c03210f8b849dd43040aee6 /src/type/display.rs
parentfdae943090463526423f5e43e72cd2f0e8147a1b (diff)
downloadmyslip-0d9c5b7fd7dec374ec357581f721f5cdc828b7ae.tar.gz
myslip-0d9c5b7fd7dec374ec357581f721f5cdc828b7ae.zip
Changed project name
Diffstat (limited to 'src/type/display.rs')
-rw-r--r--src/type/display.rs6
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(),