Skip to content

Commit

Permalink
fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
RossanaTat committed Feb 29, 2024
1 parent 1f30639 commit f4ca17b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 5 deletions.
14 changes: 12 additions & 2 deletions R/dplyr-joins.R
Original file line number Diff line number Diff line change
Expand Up @@ -711,8 +711,18 @@ inner_join <- function(
# HELPER FUNCTIONS -------------------------------------------------------------
## Arguments checks ####

#' Perform necessary preliminary checks on arguments
#' @return list of checked arguments to pass on to the main join function
#' Perform necessary preliminary checks on arguments that are passed to joyn
#' @param x data frame: left table
#' @param y data frame: right table
#' @param by character vector or variables to join by
#' @param copy
#' @param keep
#' @param suffix
#' @param na_matches
#' @param multiple
#' @param relationship
#' @param reportvar
#' @return list of checked arguments to pass on to the main joyn function
#' @keywords internal

arguments_checks <- function(x, y, by, copy, keep, suffix, na_matches, multiple,
Expand Down
27 changes: 24 additions & 3 deletions man/arguments_checks.Rd

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

0 comments on commit f4ca17b

Please sign in to comment.