Skip to content

Commit 322fe66

Browse files
committed
fix typo on version, adjust whitespace/indent too
1 parent 558e934 commit 322fe66

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2018-07-27 Dirk Eddelbuettel <[email protected]>
2+
3+
* man/loadRcppModules-deprecated.Rd: Fix typo: was deprecated in
4+
0.12.5, not 0.16.5 which does not exist
5+
16
2018-07-26 Dirk Eddelbuettel <[email protected]>
27

38
* vignettes/Rcpp-FAQ.Rmd: Use collapse: true

man/loadRcppModules-deprecated.Rd

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
\name{loadRcppModules-deprecated}
22
\alias{loadRcppModules}
33
\title{
4-
Loads Rcpp modules on package startup
4+
Loads Rcpp modules on package startup
55
}
66
\description{
7-
\emph{Note:} As of release 0.16.5, this function is deprecated;
7+
\emph{Note:} As of release 0.12.5, this function is deprecated;
88
\code{\link{loadModule}} should be used instead.
9-
10-
Function to simplify loading Rcpp modules contained in a package.
11-
This function must be called from the \code{.onLoad} function of a package.
12-
It uses the \code{RcppModules} field of the package \code{DESCRIPTION} file
13-
to query the names of the modules that the package should export, loads each module,
14-
and \code{\link{populate}} each module into the package NAMESPACE.
9+
10+
Function to simplify loading Rcpp modules contained in a package.
11+
This function must be called from the \code{.onLoad} function of a package.
12+
It uses the \code{RcppModules} field of the package \code{DESCRIPTION} file
13+
to query the names of the modules that the package should export, loads each module,
14+
and \code{\link{populate}} each module into the package NAMESPACE.
1515
}
1616
\usage{
17-
loadRcppModules(direct=TRUE)
17+
loadRcppModules(direct=TRUE)
1818
}
1919
\arguments{
20-
\item{direct}{if \code{TRUE} the content of the module is exposed in the
21-
namespace. Otherwise, the module is exposed. }
20+
\item{direct}{if \code{TRUE} the content of the module is exposed in the
21+
namespace. Otherwise, the module is exposed. }
2222
}
2323
\seealso{
24-
\code{\link{populate}}, \code{\link{loadModule}}
24+
\code{\link{populate}}, \code{\link{loadModule}}
2525
}
2626
\keyword{interface}
27-

0 commit comments

Comments
 (0)