From 02f24e1214a6eb425904e3812da58a2b73ababe9 Mon Sep 17 00:00:00 2001 From: Stuart Hinson Date: Thu, 23 Dec 2021 20:57:31 -0500 Subject: [PATCH] Fix match brackets comment (#1346) --- helix-core/src/match_brackets.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. //