From bb09bac682520054d8c9f8c44d89d199c61f5c84 Mon Sep 17 00:00:00 2001 From: C-Juliette Date: Sat, 16 Sep 2023 21:34:46 +0200 Subject: [PATCH] Fix spelling mistake in split.R --- R/split.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/split.R b/R/split.R index c29e5c52..a74deae1 100644 --- a/R/split.R +++ b/R/split.R @@ -36,7 +36,7 @@ #' str_split(fruits, " and ") #' str_split(fruits, " and ", simplify = TRUE) #' -#' # If you want to split a single string, use `str_split1` +#' # If you want to split a single string, use `str_split_1` #' str_split_1(fruits[[1]], " and ") #' #' # Specify n to restrict the number of possible matches