aboutsummaryrefslogtreecommitdiff
path: root/luxc/src/lux/lexer.clj
diff options
context:
space:
mode:
Diffstat (limited to 'luxc/src/lux/lexer.clj')
-rw-r--r--luxc/src/lux/lexer.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/luxc/src/lux/lexer.clj b/luxc/src/lux/lexer.clj
index 2f9c0717e..58f8f95f7 100644
--- a/luxc/src/lux/lexer.clj
+++ b/luxc/src/lux/lexer.clj
@@ -101,7 +101,7 @@
(return pre-quotes**))
[pre-quotes post-quotes] (if (.endsWith pre-quotes* "\\")
(if eol?
- (&/fail-with-loc "[Lexer Error] Can't leave dangling back-slash \\")
+ (&/fail-with-loc "[Lexer Error] Cannot leave dangling back-slash \\")
(if (if-let [^String back-slashes (re-find #"\\+$" pre-quotes*)]
(odd? (.length back-slashes)))
(|do [[_ eol?* _] (&reader/read-regex #"^([\"])")