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.