In the section FIles and Directories in the manual An Introduction to
R it refers to the function create.dir:

https://cran.r-project.org/doc/manuals/r-devel/R-intro.html#Files-and-directories

I've attached a patch against revision 72974 to change this to dir.create.

John
Index: doc/manual/R-intro.texi
===================================================================
--- doc/manual/R-intro.texi     (revision 72974)
+++ doc/manual/R-intro.texi     (working copy)
@@ -6567,7 +6567,7 @@
 pointers to some of the more commonly used ones.
 
 To create an (empty) file or directory, use @code{file.create} or
-@code{create.dir}.  (These are the analogues of the POSIX utilities
+@code{dir.create}.  (These are the analogues of the POSIX utilities
 @command{touch} and @command{mkdir}.)  For temporary files and
 directories in the @R{} session directory see @code{tempfile}.
 
______________________________________________
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel

Reply via email to