From 3dc03adf22763e286621c5d3f93bf22c48ec149b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20Ferenci?= Date: Tue, 20 Jan 2026 16:53:06 +0100 Subject: [PATCH] Fix typo in datatable-joins documentation --- vignettes/datatable-joins.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/datatable-joins.Rmd b/vignettes/datatable-joins.Rmd index a307d2e25..d8581eb7a 100644 --- a/vignettes/datatable-joins.Rmd +++ b/vignettes/datatable-joins.Rmd @@ -142,7 +142,7 @@ As many things have changed, let's explain the new characteristics in the follow - **Column level** - The *first group* of columns in the new `data.table` comes from the `x` table. - The *second group* of columns in the new `data.table` comes from the `i` table. - - If the join operation presents a present any **name conflict** (both table have same column name) the ***prefix*** `i.` is added to column names from the **right-hand table** (table on `i` position). + - If the join operation presents any **name conflict** (both tables have same column name) the ***prefix*** `i.` is added to column names from the **right-hand table** (table on `i` position). - **Row level** - The missing `product_id` present on the `ProductReceived` table in row 1 was successfully matched with missing `id` of the `Products` table, so `NA` ***values are treated as any other value***.