branch: externals/consult
commit fa249d5dd7212e5ae1fa51c086d8f1197d738ef4
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Improve docstrings
---
consult.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/consult.el b/consult.el
index feff928d78..a65f9d4dac 100644
--- a/consult.el
+++ b/consult.el
@@ -4680,21 +4680,21 @@ outside a project. See `consult-buffer' for more
details."
;;;###autoload
(defun consult-buffer-other-window ()
- "Variant of `consult-buffer' which opens in other window."
+ "Variant of `consult-buffer' which switches to a buffer in another window."
(interactive)
(let ((consult--buffer-display #'switch-to-buffer-other-window))
(consult-buffer)))
;;;###autoload
(defun consult-buffer-other-frame ()
- "Variant of `consult-buffer' which opens in other frame."
+ "Variant of `consult-buffer' which switches to a buffer in another frame."
(interactive)
(let ((consult--buffer-display #'switch-to-buffer-other-frame))
(consult-buffer)))
;;;###autoload
(defun consult-buffer-other-tab ()
- "Variant of `consult-buffer' which opens in other tab."
+ "Variant of `consult-buffer' which switches to a buffer in another tab."
(interactive)
(let ((consult--buffer-display #'switch-to-buffer-other-tab))
(consult-buffer)))