From be1ccdb38560f4fbfd68f2a8c51d456e9e197db2 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:55:42 -0400 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7cfa828..e64c3d7 100644 --- a/README.md +++ b/README.md @@ -419,7 +419,7 @@ You can also add the following code to enable commenting and uncommenting by pre ``` emacs-lisp (with-eval-after-load "evil" (evil-define-operator my-evil-comment-or-uncomment (beg end) - "Toggle comment from BEG to END." + "Toggle comment for the region between BEG and END." (interactive "") (comment-or-uncomment-region beg end)) (evil-define-key 'normal 'global (kbd "gc") 'my-evil-comment-or-uncomment))