Skip to content

Commit

Permalink
review suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
gogonzo committed Oct 29, 2024
1 parent 62bde91 commit 302208d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ to_html_code_list <- function(x) {
tagList(
tags$code(x[.ix]),
if (.ix != length(x)) {
tags$span(ifelse(.ix == length(x) - 1, " and ", ", "))
if (.ix == length(x) - 1) tags$span(" and ") else tags$span(", ", .noWS = "before")
}
)
})
Expand Down

0 comments on commit 302208d

Please sign in to comment.