From 4ac0c843e22e7f513f783fc354b65d5ed611292a Mon Sep 17 00:00:00 2001 From: Arnaud Gallou <67476099+arnaudgallou@users.noreply.github.com> Date: Sun, 12 Mar 2023 20:27:05 +0100 Subject: [PATCH 1/2] typo --- R/split.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/split.R b/R/split.R index 028c9646..c29e5c52 100644 --- a/R/split.R +++ b/R/split.R @@ -14,7 +14,7 @@ #' @param n Maximum number of pieces to return. Default (Inf) uses all #' possible split positions. #' -#' For `split_split()`, this determines the maximum length of each element +#' For `str_split()`, this determines the maximum length of each element #' of the output. For `str_split_fixed()`, this determines the number of #' columns in the output; if an input is too short, the result will be padded #' with `""`. From 325d6cb626d1eda65c5a09ae53704bb7f5f1c9a1 Mon Sep 17 00:00:00 2001 From: hadley Date: Fri, 4 Aug 2023 18:58:55 +0000 Subject: [PATCH 2/2] Document --- man/str_split.Rd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/str_split.Rd b/man/str_split.Rd index 0e02b82c..337df2bd 100644 --- a/man/str_split.Rd +++ b/man/str_split.Rd @@ -37,7 +37,7 @@ Match character, word, line and sentence boundaries with \item{n}{Maximum number of pieces to return. Default (Inf) uses all possible split positions. -For \code{split_split()}, this determines the maximum length of each element +For \code{str_split()}, this determines the maximum length of each element of the output. For \code{str_split_fixed()}, this determines the number of columns in the output; if an input is too short, the result will be padded with \code{""}.}