Skip to content

Commit beb361d

Browse files
fix of author dependencies
1 parent ec38b58 commit beb361d

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
cff-version: 1.2.0
2-
message: "Caroline Gao and Matthew Hamilton (2022). TTU: Implement Transfer to Utility Mapping Algorithms. Version 0.0.0.9337. Zenodo. https://doi.org/10.5281/zenodo.5646593"
2+
message: "Caroline Gao and Matthew Hamilton (2022). TTU: Implement Transfer to Utility Mapping Algorithms. Version 0.0.0.9338. Zenodo. https://doi.org/10.5281/zenodo.5646593"
33
authors:
44
- family-names: "Gao"
55
given-names: "Caroline"
66
- family-names: "Hamilton"
77
given-names: "Matthew"
88
title: "TTU: Implement Transfer to Utility Mapping Algorithms"
9-
version: 0.0.0.9337
9+
version: 0.0.0.9338
1010
doi: 10.5281/zenodo.5646593
1111
date-released: 2022-02-22
1212
url: "https://ready4-dev.github.io/TTU/"

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: TTU
22
Title: Implement Transfer to Utility Mapping Algorithms
3-
Version: 0.0.0.9337
3+
Version: 0.0.0.9338
44
Authors@R: c(
55
person("Caroline", "Gao", , "caroline.gao@orygen.org.au", role = "aut",
66
comment = c(ORCID = "0000-0002-0987-2759")),

R/mthd_author.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ methods::setMethod("author", "TTUReports", function (x, depnt_var_desc_1L_chr =
5050
"/", what_1L_chr)
5151
if (type_1L_chr == "Dependencies") {
5252
df <- data.frame(Package = c("youthvars", "scorz",
53-
"specific", "TTU", ) %>% purrr::map(~{
53+
"specific", "TTU") %>% purrr::map(~{
5454
utils::packageDescription(.x) %>% c("Depends",
5555
"Imports")[] %>% purrr::map(~{
5656
if (is.null(.x)) {

data-raw/s4_fns/author.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ author_TTUReports <- function(x,
3636
"/",
3737
what_1L_chr)
3838
if(type_1L_chr == "Dependencies"){
39-
df <- data.frame(Package = c("youthvars","scorz","specific","TTU",) %>%
39+
df <- data.frame(Package = c("youthvars","scorz","specific","TTU") %>%
4040
purrr::map(~ {
4141
utils::packageDescription(.x) %>%
4242
`[`(c("Depends", "Imports")) %>%

0 commit comments

Comments
 (0)