Skip to content

Commit

Permalink
Fix #206
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau committed Dec 4, 2024
1 parent c114914 commit 6c301c8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Description: Function-oriented Make-like declarative pipelines for
reproducible pipelines concisely and compactly.
The methods in this package were influenced by the 'targets' R package.
by Will Landau (2018) <doi:10.21105/joss.00550>.
Version: 0.11.0.9000
Version: 0.11.0.9001
License: MIT + file LICENSE
URL: https://docs.ropensci.org/tarchetypes/, https://github.com/ropensci/tarchetypes
BugReports: https://github.com/ropensci/tarchetypes/issues
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tarchetypes 0.11.0.9000

# tarchetypes 0.11.0.9001

* Fix `tar_combine()` help file examples (#206, @weberse2).

# tarchetypes 0.11.0

Expand Down
8 changes: 4 additions & 4 deletions R/tar_combine.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@
#' name = new_target_name,
#' target1,
#' target2,
#' command = bind_rows(!!!.x)
#' command = dplyr::bind_rows(!!!.x)
#' )
#' target4 <- tar_combine(
#' name = "new_target_name2",
#' name = new_target_name2,
#' target1,
#' target2,
#' command = quote(bind_rows(!!!.x))
#' command = dplyr::bind_rows(!!!.x)
#' )
#' list(target1, target2, target3, target4)
#' })
#' targets::tar_manifest()
#' targets::tar_make()
#' })
#' }
tar_combine <- function(
Expand Down
8 changes: 4 additions & 4 deletions man/tar_combine.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6c301c8

Please sign in to comment.