Skip to content

Commit 350878c

Browse files
author
hornik
committed
Fix PR#18815. Spotted by Lluis Revilla.
git-svn-id: https://svn.r-project.org/R/trunk@87287 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 5574f7a commit 350878c

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

src/library/base/man/debug.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ debuggingState(on = NULL)
7070
specified in combination with a non-null \code{signature}. For methods
7171
which implement the \code{.local} rematching mechanism, the
7272
\code{.local} closure itself is the one that will be ultimately
73-
debugged (see \code{\link[methods:RMethodUtils]{isRematched}}).
73+
debugged (see \code{\link[methods]{isRematched}}).
7474

7575
\code{isdebugged} returns \code{TRUE} if a) \code{signature} is \code{NULL}
7676
and the closure \code{fun} has been debugged, or b) \code{signature} is not

src/library/base/man/print.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ print(x, \dots)
8383
For more customizable (but cumbersome) printing, see
8484
\code{\link{cat}}, \code{\link{format}} or also \code{\link{write}}.
8585
For a simple prototypical print method, see
86-
\code{\link[tools:print.via.format]{.print.via.format}} in package \pkg{tools}.
86+
\code{\link[tools]{.print.via.format}} in package \pkg{tools}.
8787
}
8888
\examples{
8989
require(stats)

src/library/grid/man/grid.locator.Rd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ grid.locator(unit = "native")
3636
\author{ Paul Murrell }
3737
\seealso{ \code{\link{viewport}}, \code{\link{unit}},
3838
\code{\link{locator}} in package \pkg{graphics}, and for an application
39-
see \code{\link[lattice:interaction]{trellis.focus}} and
40-
\code{\link[lattice:interaction]{panel.identify}} in package
39+
see \code{\link[lattice]{trellis.focus}} and
40+
\code{\link[lattice]{panel.identify}} in package
4141
\CRANpkg{lattice}.
4242
}
4343
\examples{

src/library/stats/man/ansari.test.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ ansari.test(x, \dots)
121121
\code{\link{var.test}} and \code{\link{bartlett.test}} for parametric
122122
tests for the homogeneity in variance.
123123

124-
\code{\link[coin:ScaleTests]{ansari_test}} in package \CRANpkg{coin}
124+
\code{\link[coin]{ansari_test}} in package \CRANpkg{coin}
125125
for exact and approximate \emph{conditional} p-values for the
126126
\I{Ansari}-\I{Bradley} test, as well as different methods for handling ties.
127127
}

src/library/stats/man/confint.Rd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ confint(object, parm, level = 0.95, \dots)
5959
\emph{Modern Applied Statistics with S.} Fourth edition. Springer.
6060
}
6161
\seealso{
62-
Original versions: \code{\link[MASS:confint]{confint.glm}} and
63-
\code{\link[MASS:confint]{confint.nls}} in package \CRANpkg{MASS}.
62+
Original versions: \code{\link[MASS]{confint.glm}} and
63+
\code{\link[MASS]{confint.nls}} in package \CRANpkg{MASS}.
6464
}
6565
% the glm() example used to be wrapped in \donttest, presumably to avoid
6666
% loading MASS (?)

src/library/stats/man/cor.test.Rd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ cor.test(x, \dots)
131131
\seealso{
132132
\code{\link[Kendall:Kendall]{Kendall}} in package \CRANpkg{Kendall}.
133133
134-
\code{\link[SuppDists:Kendall]{pKendall}} and
135-
\code{\link[SuppDists:Spearman]{pSpearman}} in package
134+
\code{\link[SuppDists]{pKendall}} and
135+
\code{\link[SuppDists]{pSpearman}} in package
136136
\CRANpkg{SuppDists},
137137
\code{\link[pspearman:spearman.test]{spearman.test}} in package
138138
\CRANpkg{pspearman},

src/library/stats/man/kruskal.test.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ kruskal.test(x, \dots)
7777
one-way location analysis under normality assumptions; with Student's
7878
t test (\code{\link{t.test}}) as the special case for two samples.
7979
80-
\code{\link[coin:LocationTests]{wilcox_test}} in package
80+
\code{\link[coin]{wilcox_test}} in package
8181
\CRANpkg{coin} for exact, asymptotic and Monte Carlo
8282
\emph{conditional} p-values, including in the presence of ties.
8383
}

src/library/stats/man/simulate.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ simulate(object, nsim = 1, seed = NULL, \dots)
7676
estimate for the fit. The variance is
7777
\eqn{\mu_i^3/(\lambda w_i)} and
7878
hence inversely proportional to the prior weights. The simulation is
79-
done by function \code{\link[SuppDists:invGauss]{rinvGauss}} from the
79+
done by function \code{\link[SuppDists]{rinvGauss}} from the
8080
\CRANpkg{SuppDists} package, which must be installed.
8181
}
8282
\seealso{

src/library/stats/man/wilcox.test.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ wilcox.test(x, \dots)
174174
\seealso{
175175
\code{\link{psignrank}}, \code{\link{pwilcox}}.
176176

177-
\code{\link[coin:LocationTests]{wilcox_test}} in package
177+
\code{\link[coin]{wilcox_test}} in package
178178
\CRANpkg{coin} for exact, asymptotic and Monte Carlo
179179
\emph{conditional} p-values, including in the presence of ties.
180180

0 commit comments

Comments
 (0)