From b558505c0bd88279b9b6433ed57af8e6e32d3816 Mon Sep 17 00:00:00 2001 From: Salim B Date: Fri, 14 Feb 2025 20:02:41 +0100 Subject: [PATCH] docs: fix typo --- vignettes/from-base.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/from-base.Rmd b/vignettes/from-base.Rmd index d249c01d..a6786ecb 100644 --- a/vignettes/from-base.Rmd +++ b/vignettes/from-base.Rmd @@ -84,7 +84,7 @@ Overall the main differences between base R and stringr are: 1. The output and input of stringr functions has been carefully designed. For example, the output of `str_locate()` can be fed directly into - `str_sub()`; the same is not true of `regpexpr()` and `substr()`. + `str_sub()`; the same is not true of `regexpr()` and `substr()`. 1. Base functions use arguments (like `perl`, `fixed`, and `ignore.case`) to control how the pattern is interpreted. To avoid dependence between