Skip to content

Commit 659fb73

Browse files
committed
removed trailing whitespace
1 parent 6a777c6 commit 659fb73

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

inst/tests/tests.Rraw

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18641,3 +18641,5 @@ test(2264.7, DT[, L := list(NULL)], DT1[, `:=`(L = list(NULL))])
1864118641
DT = data.table(L = list("B", "C"), i = 1L)
1864218642
DT1 = data.table(L = list("B", "C"), i = 1L)
1864318643
test(2264.8, DT[, `:=`(L = list(NULL))], DT1[, let(L = list(NULL))])
18644+
DT = data.table(L = list("B", "C"), i = 1L)
18645+
test(2264.9, DT[])

vignettes/datatable-reference-semantics.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ l = list(1L:3L)
127127
128128
DT[, new_int := l] # Standard form, new column is integer
129129
130-
DT[, `:=`(new_list = l)] # Functional form, new column is a list of integer vectors
130+
DT[, `:=`(new_list = l)] # Functional form, new column is a list of integer vectors
131131
132132
DT[, new_list := list(l)] # Same as above, we can see that `:=` is an alias to list in functional form
133133

0 commit comments

Comments
 (0)