Skip to content

Commit

Permalink
Merge pull request #86 from MichaelChirico/patch-1
Browse files Browse the repository at this point in the history
Use paste0() over paste(sep="")
  • Loading branch information
kevinushey authored Sep 13, 2023
2 parents 7148a0c + 56b4831 commit 634ff7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
p <- function(...) {
regex(paste(sep = "", collapse = "", ...))
regex(paste0(collapse = "", ...))
}

`%==%` <- function(x, y) {
Expand Down

0 comments on commit 634ff7d

Please sign in to comment.