diff scripts/miscellaneous/copyfile.m @ 20713:2469d78a1d8b

Consistently use 'filename' rather than 'file name' throughout code base. * bootstrap, configure.ac, basics.txi, gui.txi, io.txi, mkoctfile.1, __init_qt__.cc, dialog.cc, files-dock-widget.cc, find-files-dialog.cc, file-editor-tab.cc, file-editor-tab.h, file-editor.cc, shortcut-manager.cc, debug.cc, dirfns.cc, dlmread.cc, file-io.cc, input.cc, load-path.h, load-save.cc, symtab.h, sysdep.cc, utils.cc, variables.cc, zfstream.h, oct-parse.in.yy, dir-ops.cc, file-ops.h, cmd-hist.cc, cmd-hist.h, octave_tmp_file_name.m, uigetfile.m, uiputfile.m, imshow.m, imageIO.m, dlmwrite.m, importdata.m, copyfile.m, edit.m, mkoctfile.m, movefile.m, open.m, perl.m, python.m, run.m, tmpnam.m, unpack.m, fminsearch.m, configure_make.m, print.m, __print_parse_opts__.m, test.m, main.in.cc, mkoctfile.in.cc, module.mk: Consistently use 'filename' rather than 'file name' throughout code base.
author Rik <rik@octave.org>
date Wed, 18 Nov 2015 15:48:27 -0800
parents 4197fc428c7d
children 516bb87ea72e
line wrap: on
line diff
--- a/scripts/miscellaneous/copyfile.m	Wed Nov 18 15:44:33 2015 -0500
+++ b/scripts/miscellaneous/copyfile.m	Wed Nov 18 15:48:27 2015 -0800
@@ -22,7 +22,7 @@
 ## Copy the source files or directories @var{f1} to the destination @var{f2}.
 ##
 ## The name @var{f1} may contain globbing patterns.  If @var{f1} expands to
-## multiple file names, @var{f2} must be a directory.
+## multiple filenames, @var{f2} must be a directory.
 ##
 ## When the force flag @qcode{'f'} is given any existing files will be
 ## overwritten without prompting.
@@ -79,7 +79,7 @@
     error ("copyfile: when copying multiple files, F2 must be a directory");
   endif
 
-  ## Protect the file name(s).
+  ## Protect the filename(s).
   f1 = glob (f1);
   if (isempty (f1))
     error ("copyfile: no files to move");