From 5535ba8b7d63c78d5d02e2537d02baabc2ee6222 Mon Sep 17 00:00:00 2001
From: Austin L Wolfgram <austinwolfy@gmail.com>
Date: Fri, 4 Aug 2023 04:33:30 -0400
Subject: [PATCH] fix range formatting error message typo (#7823)

---
 helix-term/src/commands.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 7fb17ed8..e0622559 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -4178,7 +4178,7 @@ fn format_selections(cx: &mut Context) {
         })
     else {
         cx.editor
-            .set_error("No configured language server does not support range formatting");
+            .set_error("No configured language server supports range formatting");
         return;
     };