diff options
| author | Mathias Fischler <Mafii@users.noreply.github.com> | 2023-06-12 12:46:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-12 12:46:08 +0200 |
| commit | 93e6638bfe171e3c337876d2143e4e048cd8b279 (patch) | |
| tree | fbed2ca8b0ec432ceec05482193aaec097778dfa /src/eval/scope.rs | |
| parent | 6a7182fcf71d05e2bb32072a56715497a03f0314 (diff) | |
Resolve #1141: Add hint for missing numbering, improve hint format consistency (#1456)
Diffstat (limited to 'src/eval/scope.rs')
| -rw-r--r-- | src/eval/scope.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval/scope.rs b/src/eval/scope.rs index bc62feb1..f2aa26fb 100644 --- a/src/eval/scope.rs +++ b/src/eval/scope.rs @@ -72,7 +72,7 @@ impl<'a> Scopes<'a> { #[cold] fn unknown_variable(var: &str) -> EcoString { if var.contains('-') { - eco_format!("unknown variable: {} – if you meant to use subtraction, try adding spaces around the minus sign.", var) + eco_format!("unknown variable: {} - if you meant to use subtraction, try adding spaces around the minus sign.", var) } else { eco_format!("unknown variable: {}", var) } |
