summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 {