From 7bdb6fb7ad1d88617e972e06c75d402def53472b Mon Sep 17 00:00:00 2001 From: Andrew E Coleman <30481896+aecoleman@users.noreply.github.com> Date: Mon, 4 May 2026 12:20:40 -0400 Subject: [PATCH] Add missing ` --- R/map.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/map.R b/R/map.R index 711511b..e5cfc19 100644 --- a/R/map.R +++ b/R/map.R @@ -195,7 +195,7 @@ map_bfs_back_dbl <- function(root, mode = 'out', unreachable = FALSE, .f, ...) { #' * `rank_out`: The rank of the completion of the nodes subtree #' * `parent`: The index of the node that led to the current node #' * `dist`: The distance of the current node from the root -#' * `path`: A table containing `node`, `rank`, `rank_out`, `parent`, dist`, and +#' * `path`: A table containing `node`, `rank`, `rank_out`, `parent`, `dist`, and #' `result` columns giving the values for each node leading to the #' current node. The `result` column will contain the result of the mapping #' of each node in a list. @@ -276,7 +276,7 @@ map_dfs_dbl <- function(root, mode = 'out', unreachable = FALSE, .f, ...) { #' * `rank_out`: The rank of the completion of the nodes subtree #' * `parent`: The index of the node that led to the current node #' * `dist`: The distance of the current node from the root -#' * `path`: A table containing `node`, `rank`, `rank_out`, `parent`, dist`, and +#' * `path`: A table containing `node`, `rank`, `rank_out`, `parent`, `dist`, and #' `result` columns giving the values for each node reached from #' the current node. The `result` column will contain the result of the mapping #' of each node in a list.