Merge pull request #2708 from dist1ll/master

docs: Add missing closing parenthesis
This commit is contained in:
Amaan Qureshi 2024-01-25 20:47:49 -05:00 committed by GitHub
commit 65c2f58018
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -580,7 +580,7 @@ grammar({
),
binary_expression: $ => choice(
prec.left(1, seq($._expression, 'instanceof', $._expression)
prec.left(1, seq($._expression, 'instanceof', $._expression))
// ...
),