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

Fixed a typo in the document and an error in the CRAN check that seems to have come from @inheritDotParams. #57

Merged
merged 1 commit into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ Suggests:
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
RoxygenNote: 7.3.2
3 changes: 1 addition & 2 deletions R/kana.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#' Generates a vector consisting of the elements of kana.
#' Options exist for the inclusion of several elements.
#' @param type "hiragana" ("hira") or "katakana" ("kata")
#' @inheritDotParams hiragana
#' @param ... Arguments passed on to [hiragana]
#' @rdname kana
#' @examples
#' kana(type = "hira", core = TRUE)
Expand Down Expand Up @@ -82,7 +82,6 @@ hiragana <- function(core = TRUE, dakuon = FALSE, handakuon = FALSE, kogaki = FA
intToUtf8)
}

#' @inheritParams hiragana
#' @export
#' @rdname kana
katakana <- function(core = TRUE, dakuon = FALSE, handakuon = FALSE, kogaki = FALSE, historical = FALSE) {
Expand Down
2 changes: 1 addition & 1 deletion R/label-kansuji.R
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ label_kansuji <- function(unit = NULL, sep = "", prefix = "", big.mark = "", num
#' @param significant.digits Determines whether or not the value of accurary is
#' valid as a significant figure with a decimal point. The default is FALSE, in
#' which case if accurary is 2 and the value is 1.10, 1.1 will be displayed,
#' but if TRUE and installed '{scales}` package, 1.10 will be displayed.
#' but if TRUE and installed `{scales}` package, 1.10 will be displayed.
#' @rdname label_kansuji
#' @export
label_kansuji_suffix <- function(accuracy = 1, unit = NULL, sep = NULL, prefix = "", big.mark = "", significant.digits = FALSE, ...) {
Expand Down
6 changes: 1 addition & 5 deletions man/kana.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/label_kansuji.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading