Skip to content

Commit b1800a9

Browse files
committed
build: fix lint
1 parent 48eef06 commit b1800a9

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

grammar.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1608,8 +1608,7 @@ module.exports = grammar({
16081608
* @param {RuleOrLiteral} sep - The separator to use.
16091609
* @param {RuleOrLiteral} rule
16101610
*
1611-
* @return {SeqRule}
1612-
*
1611+
* @returns {SeqRule}
16131612
*/
16141613
function sepBy1(sep, rule) {
16151614
return seq(rule, repeat(seq(sep, rule)));
@@ -1622,8 +1621,7 @@ function sepBy1(sep, rule) {
16221621
* @param {RuleOrLiteral} sep - The separator to use.
16231622
* @param {RuleOrLiteral} rule
16241623
*
1625-
* @return {ChoiceRule}
1626-
*
1624+
* @returns {ChoiceRule}
16271625
*/
16281626
function sepBy(sep, rule) {
16291627
return optional(sepBy1(sep, rule));

package.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)