Skip to content

Commit 8b8923f

Browse files
committed
spellcheck
1 parent f19b131 commit 8b8923f

File tree

13 files changed

+25
-20
lines changed

13 files changed

+25
-20
lines changed

R/date_yq.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#' A Simple S3-Class for Year-Quarter Dates
44
#'
55
#' A simple data type for storing year-quarter dates in a human readable integer
6-
#' format, e.g.: 3.Quarter of 2012 is stored as 20123. Supports simple arithmetics
7-
#' (`+` and `-`) as well formatting.
6+
#' format, e.g.: 3.Quarter of 2012 is stored as 20123. Supports simple
7+
#' arithmetic operations such as `+` and `-` as well formatting.
88
#'
99
#' @param y year
1010
#' @param q quarter (optional)

R/date_yw.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#'
55
#' A simple data type for storing year-isoweek dates in a human readable integer
66
#' format, e.g.: the 52nd isoweek of 2012 is stored as 201252. Supports simple
7-
#' arithmetics (`+` and `-`) as well formatting.
7+
#' arithmetic operations such as `+` and `-` as well formatting.
88
#'
99
#' @param y year
1010
#' @param w week (optional)

R/extract.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#' Extract or Replace Elements of a date_xx
22
#'
3-
#' Works exactly like susbetting base vectors via `[`, but preserves the
3+
#' Works exactly like subsetting base vectors via `[`, but preserves the
44
#' `date_xx` class and subclasses. The replacement functions `[<-` and `[[<-`
55
#' conduct additional checks before assignment to prevent the generation of
66
#' degenerate date_xx vectors (see examples).

R/format.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#' @param month_names,month_abb a `character` vector of length 12: Names and
1717
#' abbreviations for months that will be used for the
1818
#' placeholders `"%b"` and `"%B"`. Defaults to the values for
19-
#' the current locale for compatbilioty with [base::strptime()].
19+
#' the current locale for compatibility with [base::strptime()].
2020
#' @param ... ignored
2121
#'
2222
#'
@@ -261,7 +261,7 @@ format_yq <- function(x, q = NULL, format = "%Y-Q%q"){
261261

262262

263263

264-
#' Coerce and Format to Year-Muarter Strings
264+
#' Coerce and Format to Year-Month Strings
265265
#'
266266
#' @param x,m Two integer (vectors). `m` is optional and the interpretation of
267267
#' `x` will depend on whether `m` is supplied or not:

R/predicates.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#' Test for Quarter Bounds
22
#'
3-
#' `is_first_of_quarter()` and `is_last_of_quarter()` check wheter a
3+
#' `is_first_of_quarter()` and `is_last_of_quarter()` check whether a
44
#' `Date` is the first or respectively the last day of an (arbitrary) quarter.
5-
#' `is_quarter_bounds()` checks wheter two `Date` vectors mark the bounds of
5+
#' `is_quarter_bounds()` checks whether two `Date` vectors mark the bounds of
66
#' single quarters
77
#'
88
#' @param x,first,last `Date` vectors

man/Summary.date_xx.Rd

Lines changed: 7 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/date_yq.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/date_yw.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/extract_date_xx.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/format_date_xx.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)