Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Oct 26, 2023
1 parent c63436f commit 11eeefe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion grammar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ repository:
name: string.other.end.directive.attributes.var(suffix)
patterns:
- include: '#markdown-sections'
end: (\1)(:{3,})var(after)
end: (\1)var(after)
endCaptures:
1:
name: string.other.end.directive.var(suffix)
Expand Down
2 changes: 1 addition & 1 deletion text.md.js
Original file line number Diff line number Diff line change
Expand Up @@ -1761,7 +1761,7 @@ const grammar = {
include: '#markdown-sections'
}
],
end: '(\\1)(:{3,})(?:[\\t ]*$)',
end: '(\\1)(?:[\\t ]*$)',
endCaptures: {
1: {
name: 'string.other.end.directive.md'
Expand Down
2 changes: 1 addition & 1 deletion text.md.tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -2615,7 +2615,7 @@
</dict>
</array>
<key>end</key>
<string>(\1)(:{3,})(?:[\t ]*$)</string>
<string>(\1)(?:[\t ]*$)</string>
<key>endCaptures</key>
<dict>
<key>1</key>
Expand Down

0 comments on commit 11eeefe

Please sign in to comment.