diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-12-21 11:19:04 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-12-21 11:19:04 +0100 |
commit | cf6dc1838af4b3d0604d0848e1ac0d4fbd9c3dbc (patch) | |
tree | 49d76ec7b8201a96b5d12e6f5db09d8b93bdf155 /doc/misc/ido.texi | |
parent | e56dd354c751ee67d0012a0209b769246207d74c (diff) | |
download | emacs-cf6dc1838af4b3d0604d0848e1ac0d4fbd9c3dbc.tar.gz emacs-cf6dc1838af4b3d0604d0848e1ac0d4fbd9c3dbc.tar.bz2 emacs-cf6dc1838af4b3d0604d0848e1ac0d4fbd9c3dbc.zip |
; Fix spelling; be consistent with "key binding" (Bug#52674)
Diffstat (limited to 'doc/misc/ido.texi')
-rw-r--r-- | doc/misc/ido.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/misc/ido.texi b/doc/misc/ido.texi index 1c960940a0b..d71ebad4bce 100644 --- a/doc/misc/ido.texi +++ b/doc/misc/ido.texi @@ -476,13 +476,13 @@ M-x customize-variable @key{RET} ido-xxxxx @key{RET} @end example @vindex ido-setup-hook -To modify the keybindings, use the @code{ido-setup-hook}. For example: +To modify the key bindings, use the @code{ido-setup-hook}. For example: @example (add-hook 'ido-setup-hook 'ido-my-keys) (defun ido-my-keys () - "Add my keybindings for Ido." + "Add my key bindings for Ido." (define-key ido-completion-map " " 'ido-next-match)) @end example |