Skip to content

Commit

Permalink
Merge pull request #5 from selkamand/bugfix
Browse files Browse the repository at this point in the history
fix: typo in error message
  • Loading branch information
selkamand authored Dec 13, 2023
2 parents 66de7ec + 47a6f99 commit 0ada120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/make_unique.R
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ make_unique <- function(x, sep = " ", wrap_in_brackets = TRUE, warn_about_type_c
if(length(stats::na.omit(values_still_duplicated)) > 0){
stop(
"make_unique failed to make vector unique.\n",
"This is because appending ' <dup_number>' to duplicate values led to",
"This is because appending ' <dup_number>' to duplicate values led to ",
"creation of term(s) that were in the original dataset: \n[",
paste0(values_still_duplicated, collapse = ', '),
"]\n\nPlease try again with a different argument for either `wrap_in_brackets` or `sep`"
Expand Down

0 comments on commit 0ada120

Please sign in to comment.