Skip to content

Commit

Permalink
spelling/markup
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/trunk@87778 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
smeyer committed Feb 21, 2025
1 parent 7f6be6c commit e299f16
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions src/library/datasets/man/penguins.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ penguins_raw
\describe{
\item{\code{studyName}}{\code{character}, expedition during which the data was collected}
\item{\code{Sample Number}}{\code{numeric}, continuous numbering sequence for each sample}
\item{\code{Region}}{\code{character}, the region of Palmer LTER sampling grid}
\item{\code{Region}}{\code{character}, the region of Palmer \acronym{LTER} sampling grid}
\item{\code{Stage}}{\code{character}, denoting reproductive stage at sampling}
\item{\code{Individual ID}}{\code{character}, unique ID for each individual in dataset}
\item{\code{Clutch Completion}}{\code{character},
Expand All @@ -64,16 +64,16 @@ penguins_raw
}
\source{
\describe{
\item{\enc{Adélie}{Adelie} penguins:}{Palmer Station Antarctica LTER and K. Gorman (2020).
\item{\enc{Adélie}{Adelie} penguins:}{Palmer Station Antarctica \acronym{LTER} and K. Gorman (2020).
Structural size measurements and isotopic signatures of foraging
among adult male and female \enc{Adélie}{Adelie} penguins (Pygoscelis adeliae)
nesting along the Palmer Archipelago near Palmer Station, 2007-2009
ver 5. Environmental Data Initiative, \doi{10.6073/pasta/98b16d7d563f265cb52372c8ca99e60f}.}

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

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

Expand Down Expand Up @@ -111,7 +111,7 @@ penguins_raw
See the \href{https://allisonhorst.github.io/palmerpenguins/}{package website}
for further details and resources.
The \code{penguins} data has some shorter variable names than the \bold{palmerpenguins} version,
The \code{penguins} data has some shorter variable names than the \pkg{palmerpenguins} version,
for compact code and data display.
}
\examples{
Expand Down
2 changes: 1 addition & 1 deletion src/library/tools/R/testing.R
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ testInstalledBasic <- function(scope = c("basic", "devel", "both", "internet", "
runone("isas-tests")
message("running tests of random deviate generation (should no longer ever fail)")
runone("p-r-random-tests", TRUE)
message("running miscellanous strict devel checks", domain = NA)
message("running miscellaneous strict devel checks", domain = NA)
if (runone("misc-devel")) return(invisible(1L))
message("running tests demos from base and stats", domain = NA)
if (runone("demos")) return(invisible(1L))
Expand Down
2 changes: 1 addition & 1 deletion src/main/coerce.c
Original file line number Diff line number Diff line change
Expand Up @@ -1828,7 +1828,7 @@ Rboolean asRbool(SEXP x, SEXP call)
{
int ans = asLogical2(x, 1, call);
if (ans == NA_LOGICAL)
errorcall(call, _("NA in coerciaon to Rboolean"));
errorcall(call, _("NA in coercion to Rboolean"));
return ans;
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/sort.c
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ attribute_hidden SEXP do_psort(SEXP call, SEXP op, SEXP args, SEXP rho)
if (!R_FINITE(rl[i])) error(_("NA or infinite index"));
l[i] = (R_xlen_t) rl[i];
if (l[i] < 1 || l[i] > n)
error(_("'partail' index %lld outside bounds"), (long long)l[i]);
error(_("'partial' index %lld outside bounds"), (long long)l[i]);
}
} else {
int *il = INTEGER(p);
Expand Down

0 comments on commit e299f16

Please sign in to comment.