Skip to content

Commit ed5bdb1

Browse files
committed
lintr
1 parent ad66677 commit ed5bdb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/merge.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ merge.data.table = function(x, y, by = NULL, by.x = NULL, by.y = NULL, all = FAL
1313
}
1414
x0 = length(x) == 0L
1515
y0 = length(y) == 0L
16-
if (x0 || y0) {
16+
if (x0 || y0){
1717
if (x0 && y0) {
1818
warningf("Neither of the input data.tables to join have columns.")
1919
} else if (x0) {

0 commit comments

Comments
 (0)