We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rd_link()
1 parent c5a8584 commit 0af212eCopy full SHA for 0af212e
1 file changed
R/object-import.R
@@ -46,5 +46,7 @@ format.rd_section_reexport <- function(x, ...) {
46
47
reexport_link <- function(pkg, fun) {
48
env <- tryCatch(asNamespace(pkg), error = function(e) emptyenv())
49
- rd_link(pkg, escape(fun), escape(fun_suffix(fun, env)), code = TRUE)
+ map_chr(seq_along(fun), function(i) {
50
+ rd_link(pkg[[i]], escape(fun[[i]]), escape(fun_suffix(fun[[i]], env)), code = TRUE)
51
+ })
52
}
0 commit comments