Skip to content

Commit dcf4178

Browse files
rm redundant word
1 parent f7ad5e0 commit dcf4178

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vignettes/datatable-joins.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ When performing non-equi joins (`<`, `>`, `<=`, `>=`), column names are assigned
579579

580580
In non-equi joins, the left side of the operator (e.g., `x_int` in `x_int >= i_int`) must be a column from `x`, while the right side (e.g., `i_int`) must be a column from `i`.
581581

582-
Non-equi joins do not currently support arbitrary expressions (but see [#1639](https://github.com/Rdatatable/data.table/issues/1639)). For example, `on = .(x_int >= i_int)` is valid, but `on = .(x_int >= i_int + 1)` is not valid.
582+
Non-equi joins do not currently support arbitrary expressions (but see [#1639](https://github.com/Rdatatable/data.table/issues/1639)). For example, `on = .(x_int >= i_int)` is valid, but `on = .(x_int >= i_int + 1)` is not.
583583

584584
```{r non_equi_join_example}
585585
x <- data.table(x_int = 2:4, lower = letters[1:3])

0 commit comments

Comments
 (0)