From 47a6f99553ac878c44d60d8793007678baa6c552 Mon Sep 17 00:00:00 2001 From: selkamand Date: Thu, 14 Dec 2023 01:23:39 +1100 Subject: [PATCH] fix: typo in error message --- R/make_unique.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/make_unique.R b/R/make_unique.R index a3c16ea..169f078 100644 --- a/R/make_unique.R +++ b/R/make_unique.R @@ -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 ' ' to duplicate values led to", + "This is because appending ' ' 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`"