Skip to content

Commit 8b8a81e

Browse files
committed
Keep bind_rows() where needed for now
1 parent f59afa6 commit 8b8a81e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

R/rules-tokens.R

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ add_brackets_in_pipe_one <- function(pd, pos) {
5151
block = NA,
5252
is_cached = FALSE
5353
)
54-
pd$child[[next_non_comment]] <- vec_rbind(pd$child[[next_non_comment]], new_pd) %>%
54+
pd$child[[next_non_comment]] <- bind_rows(
55+
pd$child[[next_non_comment]],
56+
new_pd
57+
) %>%
5558
arrange_pos_id()
5659
}
5760
pd

0 commit comments

Comments
 (0)