emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 93815e58805: ; * lisp/eshell/esh-io.el (eshell-get-target): Fix d


From: Jim Porter
Subject: master 93815e58805: ; * lisp/eshell/esh-io.el (eshell-get-target): Fix docstring typos.
Date: Tue, 22 Aug 2023 12:09:09 -0400 (EDT)

branch: master
commit 93815e5880516e0d2c860922aea0808b9f106098
Author: Jim Porter <jporterbugs@gmail.com>
Commit: Jim Porter <jporterbugs@gmail.com>

    ; * lisp/eshell/esh-io.el (eshell-get-target): Fix docstring typos.
---
 lisp/eshell/esh-io.el | 6 +++---
 1 file 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)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]