Skip to content

Commit 466dd4a

Browse files
author
hornik
committed
Typos (PR#18893, by Eric Lindblad).
git-svn-id: https://svn.r-project.org/R/trunk@88202 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent da08538 commit 466dd4a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/library/utils/R/completion.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1044,7 +1044,7 @@ fileCompletions <- function(token)
10441044
## re-use that here. The problem is that for other
10451045
## backends a token may already have been determined, and
10461046
## that's what we will need to use. We can still fake it
1047-
## by using the correct token but substracting the extra
1047+
## by using the correct token but subtracting the extra
10481048
## part when providing completions, but that will need
10491049
## some work.
10501050

src/library/utils/R/edit.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ edit.matrix <-
210210
if(!is.null(dn[[2L]])) names(datalist) <- dn[[2L]]
211211
else names(datalist) <- paste0("col", 1L:ncol(name))
212212
modes <- as.list(rep.int(mode(name), ncol(name)))
213-
## guard aginst user error (PR#10500)
213+
## guard against user error (PR#10500)
214214
if(edit.row.names && is.null(dn[[1L]]))
215215
stop("cannot edit NULL row names")
216216
if (edit.row.names) {

src/library/utils/R/packages.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ function(db)
229229
end <- 3L + (substring(x, 4L, 4L) == "=")
230230
## Extract ops.
231231
ops <- substring(x, 3L, end)
232-
## Split target versions accordings to ops.
232+
## Split target versions according to ops.
233233
v_t <- split(substring(x, end + 1L, nchar(x) - 1L), ops)
234234
## Current R version.
235235
v_c <- getRversion()

src/library/utils/man/browseURL.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ browseURL(url, browser = getOption("browser"),
5454
it, the URL is opened in any already-running browser or a new one if
5555
necessary. This mechanism currently is available for browsers which
5656
support the \code{"-remote openURL(...)"} interface (which includes
57-
Mozilla and Opera), \I{Galeon}, \I{KDE} \I{konqueror} (\emph{via} \I{kfmclient}) and
57+
Mozilla and Opera), \I{Epiphany}, \I{KDE} \I{konqueror} (\emph{via} \I{kfmclient}) and
5858
the GNOME interface to Mozilla. (Firefox has dropped support, but
5959
defaults to using an already-running browser.) Note that the type of
6060
browser is determined from its name, so this mechanism will only be

src/library/utils/man/untar.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ untar(tarfile, files = NULL, list = FALSE, exdir = ".",
6969
file system (which on a FAT system is 2 seconds).
7070
}
7171

72-
%% even RHEL6 had GNU tar 1.23, Ububtu 14.04 has 1.27
72+
%% even RHEL6 had GNU tar 1.23, Ubuntu 14.04 has 1.27
7373
%% macOS has bsdtar from 2010: this supports xz but does not document it.
7474
%% bsdtar had lzma/xz support before April 2009 when it added
7575
%% support for command-line unxz etc, not just libraries.

src/library/utils/man/vignette.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ vignette(all = TRUE)
7575

7676
## The grid intro vignette -- open it
7777
\dontrun{vignette("grid") # calling print()}
78-
## The same (conditional on existence of the vignettte).
78+
## The same (conditional on existence of the vignette).
7979
## Note that 'package = *' is much faster in the case of many installed packages:
8080
if(!is.null(v1 <- vignette("grid", package="grid"))) {
8181
\dontrun{v1 # calling print(.)}

0 commit comments

Comments
 (0)