diff options
author | Stuart Hinson | 2021-12-24 01:57:31 +0000 |
---|---|---|
committer | GitHub | 2021-12-24 01:57:31 +0000 |
commit | 02f24e1214a6eb425904e3812da58a2b73ababe9 (patch) | |
tree | d81ad3ccfb91bbec227b0c0f343be5643eddafaf /helix-core/src | |
parent | bb684a2b42b4c984428233f2c9197cbac0e93efa (diff) |
Fix match brackets comment (#1346)
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/match_brackets.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/match_brackets.rs b/helix-core/src/match_brackets.rs index cd554005..0189dedd 100644 --- a/helix-core/src/match_brackets.rs +++ b/helix-core/src/match_brackets.rs @@ -11,7 +11,7 @@ const PAIRS: &[(char, char)] = &[ ('\"', '\"'), ]; -// limit matching pairs to only ( ) { } [ ] < > +// limit matching pairs to only ( ) { } [ ] < > ' ' " " // Returns the position of the matching bracket under cursor. // |