Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 2bd0949

Browse files
author
Alhadis
committed
Apply revision requests
1 parent e6048d9 commit 2bd0949

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

grammars/javascript.cson

+3-3
Original file line numberDiff line numberDiff line change
@@ -1926,7 +1926,7 @@
19261926
\\? | # {?string} nullable type
19271927
! | # {!string} non-nullable type
19281928
\\.{3} # {...string} variable number of parameters
1929-
[*?]? # {...*) Variable number of mixed types
1929+
[*?]? # {...*} Variable number of mixed types
19301930
)?
19311931
19321932
(?:
@@ -2055,7 +2055,7 @@
20552055
"[^"]*" | # [foo="bar"] Double-quoted
20562056
'[^']*' | # [foo='bar'] Single-quoted
20572057
{[^{}]*} | # [foo={a:1}] Object literal
2058-
\\[ [^\\]\\[]* \\] # [foo=[1,2]] Array literal
2058+
\\[ [^\\[\\]]* \\] # [foo=[1,2]] Array literal
20592059
)
20602060
)?
20612061
)
@@ -2100,7 +2100,7 @@
21002100
\\? | # {?string} nullable type
21012101
! | # {!string} non-nullable type
21022102
\\.{3} # {...string} variable number of parameters
2103-
[*?]? # {...*) Variable number of mixed types
2103+
[*?]? # {...*} Variable number of mixed types
21042104
)?
21052105
21062106
(?:

0 commit comments

Comments
 (0)