Skip to content

Commit 52f629c

Browse files
committed
syntax: Fix invalid escape of ' in php
1 parent d9245d9 commit 52f629c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime/syntax/php.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ rules:
5353
rules:
5454
- constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]"
5555
- constant.string:
56-
start: "\'"
57-
end: "\'"
56+
start: "'"
57+
end: "'"
5858
skip: "\\\\."
5959
rules:
6060
- constant.specialChar: "\\\\[abfnrtv'\\\"\\\\]"

0 commit comments

Comments
 (0)