Skip to content

Commit d4fd94a

Browse files
fix(get_repositories): bug in example with wrong type arg
Also tries to fix reference to blastula package
1 parent 2fb5d4f commit d4fd94a

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

DESCRIPTION

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ Imports:
1616
knitr,
1717
parsedate,
1818
purrr,
19-
tibble
19+
tibble,
20+
tidyr
2021
Suggests:
2122
testthat (>= 3.0.0)
2223
Config/testthat/edition: 3

R/build_email.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#'
66
#' @param from_ sender email address
77
#' @param to_ recipient email address
8-
#' @param creds A credential file of the type supported by {blastula}
8+
#' @param creds A credential file of the type supported by \pkg{blastula}
99
#' @param body_ The text to precede the table
1010
#' @param table_iss the issue table
1111
#' @param table_pr The PR table

R/get_.R

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,11 @@ get_issues <- function(org = "NOAA-FIMS", repo = "FIMS", from = -Inf) {
9696
#'
9797
#' @export
9898
#' @examples
99-
#' get_repositories("kellijohnson-NOAA")
99+
#' get_repositories("kellijohnson-NOAA", type = "users")
100100
#' data <- purrr::map_df(
101101
#' c("kellijohnson-NOAA", "msupernaw"),
102-
#' get_repositories
102+
#' get_repositories,
103+
#' type = "users"
103104
#' )
104105
#' FIMS_repos <- get_repositories("NOAA-FIMS", "orgs")
105106
get_repositories <- function(

man/build_email.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/get_repositories.Rd

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

0 commit comments

Comments
 (0)