Skip to content

Commit

Permalink
fix Rd cran note
Browse files Browse the repository at this point in the history
  • Loading branch information
DyfanJones authored Jan 2, 2024
2 parents a5fd950 + 2c6b588 commit 6ce8ebf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion make.paws/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: make.paws
Type: Package
Title: Generate Paws AWS SDKs for R
Version: 0.6.0
Version: 0.6.1
Authors@R: c(
person("David", "Kretch", email = "david.kretch@gmail.com", role = "aut"),
person("Adam", "Banker", email = "adam.banker39@gmail.com", role = "aut"),
Expand Down
4 changes: 2 additions & 2 deletions make.paws/R/docs.R
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,9 @@ comment_list_item <- function(items = list()) {
items_list <- setNames(character(length(items_names)), items_names)
for (i in items_names) {
if (is.list(items[[i]])) {
items_list[i] <- sprintf("\\item{%s:} {%s}", comment_bold(i), comment_list_itemize(items[[i]]))
items_list[i] <- sprintf("\\item{%s: %s}", comment_bold(i), comment_list_itemize(items[[i]]))
} else {
items_list[i] <- sprintf("\\item{%s:} {%s}", comment_bold(i), items[[i]])
items_list[i] <- sprintf("\\item{%s: %s}", comment_bold(i), items[[i]])
}
}
return(paste(items_list, collapse = "\n"))
Expand Down

0 comments on commit 6ce8ebf

Please sign in to comment.