branch: elpa/raku-mode
commit 8043c16dd176c7a190916a759a8a6b7cf2987965
Author: Hinrik Örn Sigurðsson <[email protected]>
Commit: Hinrik Örn Sigurðsson <[email protected]>
Grammar fixes
---
perl6-font-lock.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/perl6-font-lock.el b/perl6-font-lock.el
index 04f9e3e647..d388af17b5 100644
--- a/perl6-font-lock.el
+++ b/perl6-font-lock.el
@@ -180,12 +180,12 @@
(defun perl6-syntax-propertize (start end)
"Add context-specific syntax properties to code.
-Takes arguments START and END which delimited the region to propertize."
+Takes arguments START and END which delimit the region to propertize."
(let ((case-fold-search nil))
(goto-char start)
(funcall
(syntax-propertize-rules
- ;; [-'] inside identifiers are symbol chars
+ ;; [-'] between identifiers are symbol chars
((rx (any "A-Za-z") (group (any "-'")) (any "A-Za-z"))
(1 "_"))
;; multiline comments