Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
kit494way committed Feb 8, 2024
1 parent 2f87110 commit 5648875
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,12 @@ module.exports = grammar({
_match_pattern_record: ($) =>
seq(
BRACK().open_brace,
repeat(field("entry", choice($.record_entry, $._match_pattern_record_variable))),
repeat(
field(
"entry",
choice($.record_entry, $._match_pattern_record_variable),
),
),
BRACK().close_brace,
optional($.cell_path),
),
Expand Down

0 comments on commit 5648875

Please sign in to comment.