Skip to content

missing `=` in man page for files2

3 messages · Ben Marwick, Duncan Murdoch

#
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
#
On 22/07/2017 8:19 AM, Ben Marwick wrote:
Thanks, I'll fix that.
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
#
Thanks!
On 22/07/2017 4:08 PM, Duncan Murdoch wrote: