Hi everyone, In the example code at the bottom of this page, https://stat.ethz.ch/R-manual/R-devel/library/base/html/files2.html, there is a missing `=`. That page has: f <- list.files(".", all.files = TRUE, full.names = TRUE, recursive TRUE) but it should be: f <- list.files(".", all.files = TRUE, full.names = TRUE, recursive = TRUE) It's also missing from built-in help pages, for example ?Sys.chmod best, Ben
missing `=` in man page for files2
3 messages · Ben Marwick, Duncan Murdoch
On 22/07/2017 8:19 AM, Ben Marwick wrote:
Hi everyone, In the example code at the bottom of this page, https://stat.ethz.ch/R-manual/R-devel/library/base/html/files2.html, there is a missing `=`. That page has: f <- list.files(".", all.files = TRUE, full.names = TRUE, recursive TRUE)
Thanks, I'll fix that.
but it should be:
f <- list.files(".", all.files = TRUE, full.names = TRUE, recursive = TRUE)
It's also missing from built-in help pages, for example ?Sys.chmod
That's the same page. Each help page can have multiple "aliases" and
"concepts", which are search terms leading to it. For files2.Rd, they are:
\alias{dir.create}
\alias{dir.exists}
\alias{Sys.chmod}
\alias{Sys.umask}
\concept{directory}
\concept{mkdir}
\alias{umask} % for links
(Aliases work with ?, concepts only work with ??.)
Duncan Murdoch
best, Ben
______________________________________________ R-devel at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel
Thanks!
On 22/07/2017 4:08 PM, Duncan Murdoch wrote:
On 22/07/2017 8:19 AM, Ben Marwick wrote:
Hi everyone, In the example code at the bottom of this page, https://stat.ethz.ch/R-manual/R-devel/library/base/html/files2.html, there is a missing `=`. That page has: f <- list.files(".", all.files = TRUE, full.names = TRUE, recursive TRUE)
Thanks, I'll fix that.
but it should be:
f <- list.files(".", all.files = TRUE, full.names = TRUE, recursive =
TRUE)
It's also missing from built-in help pages, for example ?Sys.chmod
That's the same page. Each help page can have multiple "aliases" and
"concepts", which are search terms leading to it. For files2.Rd, they are:
\alias{dir.create}
\alias{dir.exists}
\alias{Sys.chmod}
\alias{Sys.umask}
\concept{directory}
\concept{mkdir}
\alias{umask} % for links
(Aliases work with ?, concepts only work with ??.)
Duncan Murdoch
best, Ben
______________________________________________ R-devel at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel