aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rust/spectrum.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/spectrum.rs b/rust/spectrum.rs
index 38fb30c..9f30a00 100644
--- a/rust/spectrum.rs
+++ b/rust/spectrum.rs
@@ -469,7 +469,7 @@ fn apply_action(list: &Vec<SchemeExpr>,
&SchemeExpr::SchemeList(ref list) => {
Ok(list[0].clone())
},
- _ => Err(format!("cdr takes only lists"))
+ _ => Err(format!("cdr only takes lists"))
}
},
"cdr" => {
@@ -480,7 +480,7 @@ fn apply_action(list: &Vec<SchemeExpr>,
&SchemeExpr::SchemeList(ref list) => {
Ok(SchemeExpr::SchemeList(list[1..].to_vec()))
},
- _ => Err(format!("car takes only lists"))
+ _ => Err(format!("car only takes lists"))
}
},
"cons" => {