From 857e62815e99b6cb68bca4e43c0c873eb29e8b7e Mon Sep 17 00:00:00 2001 From: bridroberts1 Date: Wed, 2 Oct 2024 13:51:44 +0000 Subject: [PATCH 1/2] fixed typo statment to statement --- R/case-when.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/case-when.R b/R/case-when.R index ea3f941f37..d69473fe08 100644 --- a/R/case-when.R +++ b/R/case-when.R @@ -4,7 +4,7 @@ #' This function allows you to vectorise multiple [if_else()] statements. Each #' case is evaluated sequentially and the first match for each element #' determines the corresponding value in the output vector. If no cases match, -#' the `.default` is used as a final "else" statment. +#' the `.default` is used as a final "else" statement. #' #' `case_when()` is an R equivalent of the SQL "searched" `CASE WHEN` statement. #' From 4352802b4cf3aae75ae6a577e5ec651041c3be00 Mon Sep 17 00:00:00 2001 From: bridroberts1 Date: Wed, 2 Oct 2024 13:57:54 +0000 Subject: [PATCH 2/2] fix typo statment to statement --- man/case_when.Rd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/case_when.Rd b/man/case_when.Rd index e6ea81af44..16932f0877 100644 --- a/man/case_when.Rd +++ b/man/case_when.Rd @@ -55,7 +55,7 @@ in \code{...}. This function allows you to vectorise multiple \code{\link[=if_else]{if_else()}} statements. Each case is evaluated sequentially and the first match for each element determines the corresponding value in the output vector. If no cases match, -the \code{.default} is used as a final "else" statment. +the \code{.default} is used as a final "else" statement. \code{case_when()} is an R equivalent of the SQL "searched" \verb{CASE WHEN} statement. }