Skip to content

Commit

Permalink
Minor change to magic pattern
Browse files Browse the repository at this point in the history
"usev6" isn't valid code.
  • Loading branch information
hinrik committed Jun 13, 2016
1 parent bf7900b commit aa57012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perl6-detect.el
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
(defconst perl6-magic-pattern
(rx line-start
(0+ space)
(or (and "use" (0+ space) "v6")
(or (and "use" (1+ space) "v6")
(and (opt (and (or "my" "our") (1+ space)))
(or "module" "class" "role" "grammar" "enum" "slang" "subset")))))

Expand Down

0 comments on commit aa57012

Please sign in to comment.