Skip to content

Commit

Permalink
Fix available apis printing
Browse files Browse the repository at this point in the history
Misnamed reference in vapply, closes rstudio#706
  • Loading branch information
Bruno Tremblay authored Oct 24, 2020
1 parent ab05045 commit 0f7b04c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/plumb.R
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ format.plumber_available_apis <- function(x, ...) {
function(apis_sub) {
paste0(
"* ", apis_sub$package[1], "\n",
paste0(" - ", apis$name, collapse = "\n")
paste0(" - ", apis_sub$name, collapse = "\n")
)
},
character(1)
Expand Down

0 comments on commit 0f7b04c

Please sign in to comment.