Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update s3-vector.Rmd: possessive 'its' #1848

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions vignettes/s3-vector.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ They're collectively demonstrated with a number of simple S3 classes:
- Meter: a numeric vector with meter units.
This is the simplest possible class with interesting algebraic properties.

- Period and frequency: a pair of classes represent a period, or it's inverse, frequency.
- Period and frequency: a pair of classes represent a period, or its inverse, frequency.
This allows us to explore more arithmetic operators.

## Basics
Expand Down Expand Up @@ -147,7 +147,7 @@ format.vctrs_percent <- function(x, ...) {

```{r, include = FALSE}
# As of R 3.5, print.vctr can not find format.percent since it's not in
# it's lexical environment. We fix that problem by manually registering.
# its lexical environment. We fix that problem by manually registering.
s3_register("base::format", "vctrs_percent")
```

Expand Down