Message-ID: <f8e6ff050911170726ic61a885p35ec4516e6931413@mail.gmail.com>
Date: 2009-11-17T15:26:03Z
From: Hadley Wickham
Subject: Codoc mismatches
I have a function:
source_dir <- function(path, pattern = "\\.[rR]$", chdir = TRUE) ...
documented with
...
\usage{source_dir(path, pattern="\\.[rR]$", chdir=TRUE)}
...
But I get
Codoc mismatches from documentation object 'source_dir':
source_dir
Code: function(path, pattern = "\\.[rR]$", chdir = TRUE)
Docs: function(path, pattern = "\.[rR]$", chdir = TRUE)
Mismatches in argument default values:
Name: 'pattern' Code: "\\.[rR]$" Docs: "\.[rR]$"
Is this a bug, or do I need
\usage{source_dir(path, pattern="\\\\.[rR]$", chdir=TRUE)}
?
Hadley
--
http://had.co.nz/