@@ -88,7 +88,7 @@ public typealias JoinExpression<A, B> = Selector<JoinedDataRow<A, B>, Boolean>
8888 * Each join type has a corresponding shortcut function:
8989 * [innerJoinWith], [leftJoinWith], [rightJoinWith], [fullJoinWith], [filterJoinWith], and [excludeJoinWith].
9090 *
91- * See also [join], which performs a join by exact values equality in the selected columns.
91+ * See also [join], which performs a join by exact value equality in the selected columns.
9292 *
9393 * @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
9494 *
@@ -119,7 +119,7 @@ public fun <A, B> DataFrame<A>.joinWith(
119119 * See also general [joinWith] as well as other shortcuts with each of join types:
120120 * [leftJoinWith], [rightJoinWith], [fullJoinWith], [filterJoinWith], [excludeJoinWith].
121121 *
122- * See also [join], which performs a join by simply matching columns.
122+ * See also [join], which performs a join by exact value equality in the selected columns.
123123 *
124124 * @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
125125 *
@@ -146,7 +146,7 @@ public fun <A, B> DataFrame<A>.innerJoinWith(right: DataFrame<B>, joinExpression
146146 * See also general [joinWith] as well as other shortcuts with each of join types:
147147 * [innerJoinWith], [rightJoinWith], [fullJoinWith], [filterJoinWith], [excludeJoinWith].
148148 *
149- * See also [join], which performs a join by simply matching columns.
149+ * See also [join], which performs a join by exact value equality in the selected columns.
150150 *
151151 * @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
152152 *
@@ -173,7 +173,7 @@ public fun <A, B> DataFrame<A>.leftJoinWith(right: DataFrame<B>, joinExpression:
173173 * See also general [joinWith] as well as other shortcuts with each of join types:
174174 * [innerJoinWith], [leftJoinWith], [fullJoinWith], [filterJoinWith], [excludeJoinWith].
175175 *
176- * See also [join], which performs a join by simply matching columns.
176+ * See also [join], which performs a join by exact value equality in the selected columns.
177177 *
178178 * @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
179179 *
@@ -200,7 +200,7 @@ public fun <A, B> DataFrame<A>.rightJoinWith(right: DataFrame<B>, joinExpression
200200 * See also general [joinWith] as well as other shortcuts with each of join types:
201201 * [leftJoinWith], [rightJoinWith], [innerJoinWith], [filterJoinWith], [excludeJoinWith].
202202 *
203- * See also [join], which performs a join by simply matching columns.
203+ * See also [join], which performs a join by exact value equality in the selected columns.
204204 *
205205 * @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
206206 *
@@ -227,7 +227,7 @@ public fun <A, B> DataFrame<A>.fullJoinWith(right: DataFrame<B>, joinExpression:
227227 * See also general [joinWith] as well as other shortcuts with each of join types:
228228 * [leftJoinWith], [rightJoinWith], [fullJoinWith], [innerJoinWith], [excludeJoinWith].
229229 *
230- * See also [join], which performs a join by simply matching columns.
230+ * See also [join], which performs a join by exact value equality in the selected columns.
231231 *
232232 * @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
233233 *
@@ -254,7 +254,7 @@ public fun <A, B> DataFrame<A>.filterJoinWith(right: DataFrame<B>, joinExpressio
254254 * See also general [joinWith] as well as other shortcuts with each of join types:
255255 * [leftJoinWith], [rightJoinWith], [fullJoinWith], [filterJoinWith], [innerJoinWith].
256256 *
257- * See also [join], which performs a join by simply matching columns.
257+ * See also [join], which performs a join by exact value equality in the selected columns.
258258 *
259259 * @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
260260 *
0 commit comments