summaryrefslogtreecommitdiff
path: root/src/eval
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-05-03 16:43:44 +0200
committerLaurenz <laurmaedje@gmail.com>2022-05-03 16:43:44 +0200
commite18a896a93cae987aa30addd40e678bf0064fd31 (patch)
tree5371e7d502258fa99414d89969f3b97f438257e3 /src/eval
parentd59109e8fffa1d0b03234329e12f5d3e578804e8 (diff)
Test recursive show rules
Diffstat (limited to 'src/eval')
-rw-r--r--src/eval/dict.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval/dict.rs b/src/eval/dict.rs
index bda433e1..6b4dbbd7 100644
--- a/src/eval/dict.rs
+++ b/src/eval/dict.rs
@@ -117,7 +117,7 @@ impl Dict {
/// The missing key access error message.
#[cold]
fn missing_key(key: &EcoString) -> String {
- format!("dictionary does not contain key: {:?}", key)
+ format!("dictionary does not contain key {:?}", key)
}
impl Debug for Dict {