Skip to content

Commit 3aeaccd

Browse files
committed
Fixes for R CMD check
1 parent 934018d commit 3aeaccd

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
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
3+
Version: 1.5.2
44
Authors@R: c(
55
person("Hadley", "Wickham", , "[email protected]", role = c("aut", "cre", "cph")),
66
person("Posit Software, PBC", role = c("cph", "fnd"))
@@ -40,4 +40,4 @@ Config/testthat/edition: 3
4040
Encoding: UTF-8
4141
LazyData: true
4242
Roxygen: list(markdown = TRUE)
43-
RoxygenNote: 7.2.3
43+
RoxygenNote: 7.3.2

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# stringr 1.5.2
2+
3+
* `R CMD check` fixes
4+
15
# stringr 1.5.1
26

37
* Some minor documentation improvements.

R/replace.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#' @return A character vector the same length as
3030
#' `string`/`pattern`/`replacement`.
3131
#' @seealso [str_replace_na()] to turn missing values into "NA";
32-
#' [stri_replace()] for the underlying implementation.
32+
#' [stringi::stri_replace()] for the underlying implementation.
3333
#' @export
3434
#' @examples
3535
#' 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
@@ -32,7 +32,7 @@
3232
#' * `str_split_fixed()`: a character matrix with `n` columns and the same
3333
#' number of rows as the length of `string`/`pattern`.
3434
#' * `str_split_i()`: a character vector the same length as `string`/`pattern`.
35-
#' @seealso [stri_split()] for the underlying implementation.
35+
#' @seealso [stringi::stri_split()] for the underlying implementation.
3636
#' @export
3737
#' @examples
3838
#' fruits <- c(

man/str_glue.Rd

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

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)