From cc6d981ccbdc81e42abb1b904e488177d9288242 Mon Sep 17 00:00:00 2001 From: RodDalBen Date: Thu, 15 Aug 2024 10:59:37 -0600 Subject: [PATCH] Fix typo in cumulative function docs #7062 --- R/funs.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/funs.R b/R/funs.R index be88b4eb3e..0610b04b51 100644 --- a/R/funs.R +++ b/R/funs.R @@ -49,7 +49,7 @@ between <- function(x, left, right) { left & right } -#' Cumulativate versions of any, all, and mean +#' Cumulative versions of any, all, and mean #' #' dplyr provides `cumall()`, `cumany()`, and `cummean()` to complete R's set #' of cumulative functions.