changeset 17547:e7a9be8fdd21

* @ftp/close.m: Fix function name.
author John W. Eaton <jwe@octave.org>
date Wed, 02 Oct 2013 23:33:02 -0400
parents 53ae37d37b16
children 92541ff4cc3c
files scripts/@ftp/close.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/@ftp/close.m	Wed Oct 02 20:04:52 2013 -0400
+++ b/scripts/@ftp/close.m	Wed Oct 02 23:33:02 2013 -0400
@@ -23,7 +23,7 @@
 ## @var{f} is an FTP object returned by the @code{ftp} function.
 ## @end deftypefn
 
-function dir (f)
+function close (f)
   __ftp_close__ (f.curlhandle);
 endfunction