aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src
diff options
context:
space:
mode:
authorStuart Hinson2021-12-24 01:57:31 +0000
committerGitHub2021-12-24 01:57:31 +0000
commit02f24e1214a6eb425904e3812da58a2b73ababe9 (patch)
treed81ad3ccfb91bbec227b0c0f343be5643eddafaf /helix-core/src
parentbb684a2b42b4c984428233f2c9197cbac0e93efa (diff)
Fix match brackets comment (#1346)
Diffstat (limited to 'helix-core/src')
-rw-r--r--helix-core/src/match_brackets.rs2
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.
//