Skip to content

Commit 1fca39e

Browse files
committed
Merge remote-tracking branch 'origin/v1.5.2'
2 parents 0e282df + 3aeaccd commit 1fca39e

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: stringr
22
Title: Simple, Consistent Wrappers for Common String Operations
3-
Version: 1.5.1.9000
3+
Version: 1.5.2.9000
44
Authors@R: c(
55
person("Hadley", "Wickham", , "[email protected]", role = c("aut", "cre", "cph")),
66
person("Posit Software, PBC", role = c("cph", "fnd"))

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
a single vector. This radically improves performance at the cost of breaking
1515
some existing uses (#462).
1616

17+
# stringr 1.5.2
18+
19+
* `R CMD check` fixes
20+
1721
# stringr 1.5.1
1822

1923
* Some minor documentation improvements.

R/replace.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#' @return A character vector the same length as
3434
#' `string`/`pattern`/`replacement`.
3535
#' @seealso [str_replace_na()] to turn missing values into "NA";
36-
#' [stri_replace()] for the underlying implementation.
36+
#' [stringi::stri_replace()] for the underlying implementation.
3737
#' @export
3838
#' @examples
3939
#' fruits <- c("one apple", "two pears", "three bananas")

R/split.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#' * `str_split_fixed()`: a character matrix with `n` columns and the same
3232
#' number of rows as the length of `string`/`pattern`.
3333
#' * `str_split_i()`: a character vector the same length as `string`/`pattern`.
34-
#' @seealso [stri_split()] for the underlying implementation.
34+
#' @seealso [stringi::stri_split()] for the underlying implementation.
3535
#' @export
3636
#' @examples
3737
#' fruits <- c(

man/str_replace.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/str_split.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)