Skip to content

Commit 9577bdb

Browse files
committed
import dplyr::everything()
1 parent 8344e0c commit 9577bdb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

R/save_with_rmarkdown.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
#' tbl |>
4646
#' gtsummary::as_gt() |>
4747
#' gt::cols_width(
48-
#' tidyselect::everything() ~ gt::px(100)
48+
#' dplyr::everything() ~ gt::px(100)
4949
#' ) |>
5050
#' save_with_rmarkdown(path = tempfile(fileext = ".docx"))
5151
#'

man/save_with_rmarkdown.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/testthat/test-save_with_rmarkdown.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ test_that("save_with_rmarkdown() works with gt_tbl-list", {
9292
expect_error(
9393
gtsummary::as_gt(tbl) |>
9494
gt::cols_width(
95-
tidyselect::everything() ~ gt::px(100)
95+
dplyr::everything() ~ gt::px(100)
9696
) |>
9797
save_with_rmarkdown(, path = file_path),
9898
NA

0 commit comments

Comments
 (0)