From aaf77f63d24279d56ec4fd09ab47b78f186172af Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Wed, 18 Dec 2024 22:15:20 -0800 Subject: [PATCH] missing newline after verbose message --- R/data.table.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/data.table.R b/R/data.table.R index 6594cb928..bac200b8a 100644 --- a/R/data.table.R +++ b/R/data.table.R @@ -459,9 +459,9 @@ replace_dot_alias = function(e) { if (!len_common_names) stopf("Attempting to do natural join but no common columns in provided tables") if (verbose) { which_cols_msg = if (len_common_names == length(x)) { - catf("Joining but 'x' has no key, natural join using all 'x' columns") + catf("Joining but 'x' has no key, natural join using all 'x' columns\n") } else { - catf("Joining but 'x' has no key, natural join using: %s", brackify(common_names)) + catf("Joining but 'x' has no key, natural join using: %s\n", brackify(common_names)) } } on = common_names