summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Porter <jporterbugs@gmail.com>2023-08-22 09:07:51 -0700
committerJim Porter <jporterbugs@gmail.com>2023-08-22 09:07:51 -0700
commit93815e5880516e0d2c860922aea0808b9f106098 (patch)
tree8cb2d71772d878a187e7d86d01b68be051649945
parent5ac8c19826a51d2780e4ab2e1822b521b36b41b1 (diff)
downloademacs-93815e5880516e0d2c860922aea0808b9f106098.tar.gz
; * lisp/eshell/esh-io.el (eshell-get-target): Fix docstring typos.
-rw-r--r--lisp/eshell/esh-io.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/eshell/esh-io.el b/lisp/eshell/esh-io.el
index f9f50ea433a..59c5a93d5c8 100644
--- a/lisp/eshell/esh-io.el
+++ b/lisp/eshell/esh-io.el
@@ -545,7 +545,7 @@ This returns a marker for that buffer."
(point-marker)))
(cl-defmethod eshell-get-target ((raw-target symbol) &optional mode)
- "Convert a raw symbol RAW-TARGET into a valid output target using MODE.
+ "Convert a symbol RAW-TARGET into a valid output target using MODE.
This returns RAW-TARGET, with its value initialized to nil if MODE is
`overwrite'."
(when (eq mode 'overwrite)
@@ -553,12 +553,12 @@ This returns RAW-TARGET, with its value initialized to nil if MODE is
raw-target)
(cl-defmethod eshell-get-target ((raw-target process) &optional _mode)
- "Convert a raw process RAW-TARGET into a valid output target.
+ "Convert a process RAW-TARGET into a valid output target.
This just returns RAW-TARGET."
raw-target)
(cl-defmethod eshell-get-target ((raw-target marker) &optional _mode)
- "Convert a raw process RAW-TARGET into a valid output target.
+ "Convert a marker RAW-TARGET into a valid output target.
This just returns RAW-TARGET."
raw-target)