diff lisp/net/tramp.el @ 46151:eff75835ac2e

(tramp-send-eof): Fix typo. (tramp-kill-process): Likewise.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 03 Jul 2002 10:00:18 +0000
parents 40298ba8e901
children 56e301cdd730
line wrap: on
line diff
--- a/lisp/net/tramp.el	Wed Jul 03 09:49:28 2002 +0000
+++ b/lisp/net/tramp.el	Wed Jul 03 10:00:18 2002 +0000
@@ -4446,7 +4446,7 @@
 
 (defun tramp-send-eof (multi-method method user host)
   "Send EOF to the remote end.
-METHOD, HOST and USER specify the the connection."
+METHOD, HOST and USER specify the connection."
   (let ((proc (get-buffer-process
                (tramp-get-buffer multi-method method user host))))
     (unless proc
@@ -4456,7 +4456,7 @@
 
 (defun tramp-kill-process (multi-method method user host)
   "Kill the connection process used by Tramp.
-MULTI-METHOD, METHOD, USER, and HOST, specify the connection."
+MULTI-METHOD, METHOD, USER, and HOST specify the connection."
   (let ((proc (get-buffer-process
 	       (tramp-get-buffer multi-method method user host))))
     (kill-process proc)))