Skip to content

Commit

Permalink
build: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
amaanq committed Nov 10, 2024
1 parent 48eef06 commit b1800a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -1608,8 +1608,7 @@ module.exports = grammar({
* @param {RuleOrLiteral} sep - The separator to use.
* @param {RuleOrLiteral} rule
*
* @return {SeqRule}
*
* @returns {SeqRule}
*/
function sepBy1(sep, rule) {
return seq(rule, repeat(seq(sep, rule)));
Expand All @@ -1622,8 +1621,7 @@ function sepBy1(sep, rule) {
* @param {RuleOrLiteral} sep - The separator to use.
* @param {RuleOrLiteral} rule
*
* @return {ChoiceRule}
*
* @returns {ChoiceRule}
*/
function sepBy(sep, rule) {
return optional(sepBy1(sep, rule));
Expand Down
2 changes: 1 addition & 1 deletion package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b1800a9

Please sign in to comment.