Skip to content

Commit

Permalink
fix(fuzzyhelp): prefix package name for non-base objects
Browse files Browse the repository at this point in the history
  • Loading branch information
atusy committed Apr 18, 2024
1 parent b2da5e6 commit ae80a29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/fuzzyhelp.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ get_content <- function(x, i) {
if (is.null(helpPort)) {
return(get_vignette(topic, package))
}
v <- vignette(topic, package)
v <- utils::vignette(topic, package)
return(sprintf(helpUrl, helpPort, "library", basename(v$Dir), "doc", v$PDF, ""))
}

Expand Down

0 comments on commit ae80a29

Please sign in to comment.