Commit
+2 -1 +/-1 browse
1 | diff --git a/grammar.js b/grammar.js |
2 | index 9cf129e..5a8c73c 100644 |
3 | --- a/grammar.js |
4 | +++ b/grammar.js |
5 | @@ -44,7 +44,8 @@ module.exports = grammar({ |
6 | |
7 | file: ($) => iseq(field("kind", choice("---", "+++")), $.filename), |
8 | |
9 | - location: ($) => iseq("@@", $.linerange, $.linerange, "@@", optional(ANYTHING)), |
10 | + location: ($) => |
11 | + iseq("@@", $.linerange, $.linerange, "@@", optional(ANYTHING)), |
12 | |
13 | addition: ($) => iseq("+", optional(ANYTHING)), |
14 |