Skip to content

Commit

Permalink
... -> \dots in fcase.Rd (#4452)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelChirico authored Apr 15, 2021
1 parent 19065fb commit 306f49c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion man/fcase.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
\code{fcase} is a fast implementation of SQL \code{CASE WHEN} statement for R. Conceptually, \code{fcase} is a nested version of \code{\link{fifelse}} (with smarter implementation than manual nesting). It is comparable to \code{dplyr::case_when} and supports \code{bit64}'s \code{integer64} and \code{nanotime} classes.
}
\usage{
fcase(..., default=NA)
fcase(\dots, default=NA)
}
\arguments{
\item{...}{ A sequence consisting of logical condition (\code{when})-resulting value (\code{value}) \emph{pairs} in the following order \code{when1, value1, when2, value2, ..., whenN, valueN}. Logical conditions \code{when1, when2, ..., whenN} must all have the same length, type and attributes. Each \code{value} may either share length with \code{when} or be length 1. Please see Examples section for further details.}
Expand Down

0 comments on commit 306f49c

Please sign in to comment.