summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordr-scsi <59777257+dr-scsi@users.noreply.github.com>2025-10-18 23:40:09 +0200
committerDaniel Mendler <mail@daniel-mendler.de>2025-10-18 23:56:44 +0200
commit76ee8f4e57d4cfb0deb3988cde199e6028cfbe7e (patch)
treefcc7b4a20b74708abc6d05723c4f984c20bdfea2
parenta3ba7b7884b4d897439a6e329e36ec645e6fee94 (diff)
Fix docstrings
* corfu.el (corfu-continue-commands): (corfu-auto-commands): Use a verb. (corfu-auto): Delete space before period.
-rw-r--r--corfu.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/corfu.el b/corfu.el
index d2f0f40..34c51ae 100644
--- a/corfu.el
+++ b/corfu.el
@@ -84,7 +84,7 @@ The value should lie between 0 and corfu-count/2."
'(ignore universal-argument universal-argument-more digit-argument
"\\`corfu-" "\\`scroll-other-window")
"Continue Corfu completion after executing these commands.
-The list can container either command symbols or regular expressions."
+The list can contain either command symbols or regular expressions."
:type '(repeat (choice regexp symbol)))
(defcustom corfu-preview-current 'insert
@@ -186,7 +186,7 @@ the completion backend is costly."
'("self-insert-command\\'" "delete-backward-char\\'" "\\`backward-delete-char"
c-electric-colon c-electric-lt-gt c-electric-slash c-scope-operator)
"Commands which initiate auto completion.
-The list can container either command symbols or regular expressions."
+The list can contain either command symbols or regular expressions."
:type '(repeat (choice regexp symbol)))
(defcustom corfu-auto nil
@@ -194,7 +194,7 @@ The list can container either command symbols or regular expressions."
Auto completion is disabled by default for safety and unobtrusiveness.
Note that auto completion is particularly dangerous in untrusted files
since some completion functions may perform arbitrary code execution,
-notably the Emacs built-in `elisp-completion-at-point' . See also the
+notably the Emacs built-in `elisp-completion-at-point'. See also the
settings `corfu-auto-delay', `corfu-auto-prefix' and
`corfu-auto-commands'."
:type 'boolean)