Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/trunk@86517 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
smeyer committed May 3, 2024
1 parent 932c3b9 commit cc7f6c1
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/library/base/man/find.package.Rd
Expand Up @@ -82,4 +82,4 @@ findPkgAll <- function(pkg)
findPkgAll("MASS")
findPkgAll("knitr")
}
\keyword{files}
\keyword{file}
2 changes: 1 addition & 1 deletion src/library/base/man/ns-load.Rd
Expand Up @@ -137,7 +137,7 @@ isNamespaceLoaded(name)
statL <- isNamespaceLoaded("stats")% checks work also when it is *not* loaded
stopifnot( identical(statL, "stats" \%in\% lns) )

## The string "foo" and the symbol 'foo' can be used interchangably here:
## The string "foo" and the symbol 'foo' can be used interchangeably here:
stopifnot( identical(isNamespaceLoaded( "foo" ), FALSE),
identical(isNamespaceLoaded(quote(foo)), FALSE),
identical(isNamespaceLoaded(quote(stats)), statL))
Expand Down
4 changes: 2 additions & 2 deletions src/library/base/man/options.Rd
Expand Up @@ -879,8 +879,8 @@ options(error = quote({dump.frames(to.file = TRUE); q()}))
}
# Compare the two ways to get an option and use it
# acconting for the possibility it might not be set.
if(as.logical(getOption("performCleanp", TRUE)))
# accounting for the possibility it might not be set.
if(as.logical(getOption("performCleanup", TRUE)))
cat("do cleanup\n")
\dontrun{
Expand Down
2 changes: 1 addition & 1 deletion src/library/base/man/zapsmall.Rd
Expand Up @@ -38,7 +38,7 @@ zapsmall(x, digits = getOption("digits"),
\examples{
x2 <- pi * 100^(-2:2)/10
print( x2, digits = 4)
zapsmall( x2) # automatical digits
zapsmall( x2) # automatic digits
zapsmall( x2, digits = 4)
zapsmall(c(x2, Inf)) # round()s to integer ..
zapsmall(c(x2, Inf), min.d=-Inf) # everything is small wrt Inf
Expand Down
2 changes: 1 addition & 1 deletion src/library/methods/man/new.Rd
Expand Up @@ -39,7 +39,7 @@ named classes.}
\section{Initialize Methods}{
The generic function \code{initialize} is not called directly.
A call to \code{new} begins by copying the prototype object from
the class definition, and then calls \code{intialize()} with this
the class definition, and then calls \code{initialize()} with this
object as the first argument, followed by the \dots{} arguments.

The interpretation of the \code{\dots} arguments in a call to a
Expand Down
2 changes: 1 addition & 1 deletion src/library/parallel/man/splitIndices.Rd
Expand Up @@ -26,4 +26,4 @@ splitIndices(nx, ncl)
\examples{
splitIndices(20, 3)
}
\keyword{ utility }
\keyword{ utilities }
2 changes: 1 addition & 1 deletion src/library/parallel/man/unix/mclapply.Rd
Expand Up @@ -206,7 +206,7 @@ B <- runif(2500000,0,100)
C <- runif(5000000,0,100)
first <- function(i) head(sort(i), n = 1)
# Restict all elements of X to run on CPU 1 and 2
# Restrict all elements of X to run on CPU 1 and 2
affL <- list(c(1,2), c(1,2), c(1,2))
mclapply(list(A, A, A), first, mc.preschedule = FALSE, affinity.list = affL)
Expand Down
2 changes: 1 addition & 1 deletion src/library/stats/man/heatmap.Rd
Expand Up @@ -110,7 +110,7 @@ heatmap(x, Rowv = NULL, Colv = if(symm)"Rowv" else NULL,
\code{heatmap()} uses \code{\link{layout}} and draws the
\code{\link{image}} in the lower right corner of a 2x2 layout.
Consequentially, it can \bold{not} be used in a multi column/row
Consequently, it can \bold{not} be used in a multi column/row
layout, i.e., when \code{\link{par}(mfrow = *)} or \code{(mfcol = *)}
has been called.
}
Expand Down
2 changes: 1 addition & 1 deletion src/library/stats/man/order.dendrogram.Rd
Expand Up @@ -9,7 +9,7 @@
\alias{labels.dendrogram}
\title{Ordering or Labels of the Leaves in a Dendrogram}
\description{
Theses functions return the order (index) or the \code{"label"}
These functions return the order (index) or the \code{"label"}
attribute for the leaves in a
dendrogram. These indices can then be used to access the appropriate
components of any additional data.
Expand Down
2 changes: 1 addition & 1 deletion src/library/tools/man/bibstyle.Rd
Expand Up @@ -122,5 +122,5 @@ bibstyle("unsorted", sortKeys = function(refs) seq_along(refs),
.init = TRUE)
print(refs, .bibstyle = "unsorted")
}
\keyword{ utilties }
\keyword{ utilities }
\keyword{ documentation }
2 changes: 1 addition & 1 deletion src/library/tools/man/psnice.Rd
Expand Up @@ -54,4 +54,4 @@ psnice(pid = Sys.getpid(), value = NA_integer_)
\code{\link{pskill}}.
}

\keyword{ utility }
\keyword{ utilities }
2 changes: 1 addition & 1 deletion src/library/utils/man/removeSource.Rd
Expand Up @@ -59,4 +59,4 @@ stopifnot(length(attributes(E )) > 0,
is.null(attributes(E.)))
options(op) # reset to previous state
}
\keyword{utility}
\keyword{utilities}
2 changes: 1 addition & 1 deletion tests/Examples/tools-Ex.Rout.save
Expand Up @@ -185,7 +185,7 @@ Error in assertWarning(ff()) :
> ### Name: bibstyle
> ### Title: Select or Define a Bibliography Style
> ### Aliases: bibstyle getBibstyle
> ### Keywords: utilties documentation
> ### Keywords: utilities documentation
>
> ### ** Examples
>
Expand Down

0 comments on commit cc7f6c1

Please sign in to comment.