]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/eshell/esh-io.el (eshell-get-target): Fix docstring typos.
authorJim Porter <jporterbugs@gmail.com>
Tue, 22 Aug 2023 16:07:51 +0000 (09:07 -0700)
committerJim Porter <jporterbugs@gmail.com>
Tue, 22 Aug 2023 16:07:51 +0000 (09:07 -0700)
lisp/eshell/esh-io.el

index f9f50ea433a1c350b62ea421e2bff30b3e976b9e..59c5a93d5c8f40e6cf83ab2bb112be60d09d6e57 100644 (file)
@@ -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)