Skip to content

Commit e299f16

Browse files
author
smeyer
committed
spelling/markup
git-svn-id: https://svn.r-project.org/R/trunk@87778 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 7f6be6c commit e299f16

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/library/datasets/man/penguins.Rd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ penguins_raw
5252
\describe{
5353
\item{\code{studyName}}{\code{character}, expedition during which the data was collected}
5454
\item{\code{Sample Number}}{\code{numeric}, continuous numbering sequence for each sample}
55-
\item{\code{Region}}{\code{character}, the region of Palmer LTER sampling grid}
55+
\item{\code{Region}}{\code{character}, the region of Palmer \acronym{LTER} sampling grid}
5656
\item{\code{Stage}}{\code{character}, denoting reproductive stage at sampling}
5757
\item{\code{Individual ID}}{\code{character}, unique ID for each individual in dataset}
5858
\item{\code{Clutch Completion}}{\code{character},
@@ -64,16 +64,16 @@ penguins_raw
6464
}
6565
\source{
6666
\describe{
67-
\item{\enc{Adélie}{Adelie} penguins:}{Palmer Station Antarctica LTER and K. Gorman (2020).
67+
\item{\enc{Adélie}{Adelie} penguins:}{Palmer Station Antarctica \acronym{LTER} and K. Gorman (2020).
6868
Structural size measurements and isotopic signatures of foraging
6969
among adult male and female \enc{Adélie}{Adelie} penguins (Pygoscelis adeliae)
7070
nesting along the Palmer Archipelago near Palmer Station, 2007-2009
7171
ver 5. Environmental Data Initiative, \doi{10.6073/pasta/98b16d7d563f265cb52372c8ca99e60f}.}
7272

73-
\item{Gentoo penguins:}{Palmer Station Antarctica LTER and K. Gorman (2020).
73+
\item{Gentoo penguins:}{Palmer Station Antarctica \acronym{LTER} and K. Gorman (2020).
7474
\doi{10.6073/pasta/7fca67fb28d56ee2ffa3d9370ebda689}.}
7575

76-
\item{Chinstrap penguins:}{Palmer Station Antarctica LTER and K. Gorman (2020).
76+
\item{Chinstrap penguins:}{Palmer Station Antarctica \acronym{LTER} and K. Gorman (2020).
7777
\doi{10.6073/pasta/c14dfcfada8ea13a17536e73eb6fbe9e}.}
7878
}
7979

@@ -111,7 +111,7 @@ penguins_raw
111111
See the \href{https://allisonhorst.github.io/palmerpenguins/}{package website}
112112
for further details and resources.
113113
114-
The \code{penguins} data has some shorter variable names than the \bold{palmerpenguins} version,
114+
The \code{penguins} data has some shorter variable names than the \pkg{palmerpenguins} version,
115115
for compact code and data display.
116116
}
117117
\examples{

src/library/tools/R/testing.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@ testInstalledBasic <- function(scope = c("basic", "devel", "both", "internet", "
854854
runone("isas-tests")
855855
message("running tests of random deviate generation (should no longer ever fail)")
856856
runone("p-r-random-tests", TRUE)
857-
message("running miscellanous strict devel checks", domain = NA)
857+
message("running miscellaneous strict devel checks", domain = NA)
858858
if (runone("misc-devel")) return(invisible(1L))
859859
message("running tests demos from base and stats", domain = NA)
860860
if (runone("demos")) return(invisible(1L))

src/main/coerce.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1828,7 +1828,7 @@ Rboolean asRbool(SEXP x, SEXP call)
18281828
{
18291829
int ans = asLogical2(x, 1, call);
18301830
if (ans == NA_LOGICAL)
1831-
errorcall(call, _("NA in coerciaon to Rboolean"));
1831+
errorcall(call, _("NA in coercion to Rboolean"));
18321832
return ans;
18331833
}
18341834

src/main/sort.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ attribute_hidden SEXP do_psort(SEXP call, SEXP op, SEXP args, SEXP rho)
796796
if (!R_FINITE(rl[i])) error(_("NA or infinite index"));
797797
l[i] = (R_xlen_t) rl[i];
798798
if (l[i] < 1 || l[i] > n)
799-
error(_("'partail' index %lld outside bounds"), (long long)l[i]);
799+
error(_("'partial' index %lld outside bounds"), (long long)l[i]);
800800
}
801801
} else {
802802
int *il = INTEGER(p);

0 commit comments

Comments
 (0)