Skip to content

Commit 4a2474b

Browse files
missing newline after verbose message (#6666)
1 parent a9cd0bf commit 4a2474b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

R/data.table.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,9 +459,9 @@ replace_dot_alias = function(e) {
459459
if (!len_common_names) stopf("Attempting to do natural join but no common columns in provided tables")
460460
if (verbose) {
461461
which_cols_msg = if (len_common_names == length(x)) {
462-
catf("Joining but 'x' has no key, natural join using all 'x' columns")
462+
catf("Joining but 'x' has no key, natural join using all 'x' columns\n")
463463
} else {
464-
catf("Joining but 'x' has no key, natural join using: %s", brackify(common_names))
464+
catf("Joining but 'x' has no key, natural join using: %s\n", brackify(common_names))
465465
}
466466
}
467467
on = common_names

0 commit comments

Comments
 (0)