@@ -759,8 +759,9 @@ class Dataset[T] private[sql](
759759 *
760760 * @param right Right side of the join operation.
761761 * @param usingColumns Names of the columns to join on. This columns must exist on both sides.
762- * @param joinType One of: `inner`, `cross`, `outer`, `full`, `full_outer`,
763- * `left`, `left_outer`, `right`, `right_outer`, `left_semi`, `left_anti`.
762+ * @param joinType Type of join to perform. Default `inner`. Must be any of:
763+ * `inner`, `cross`, `outer`, `full`, `full_outer`, `left`, `left_outer`,
764+ * `right`, `right_outer`, `left_semi`, `left_anti`.
764765 *
765766 * @note If you perform a self-join using this function without aliasing the input
766767 * `DataFrame`s, you will NOT be able to reference any columns after the join, since
@@ -815,8 +816,9 @@ class Dataset[T] private[sql](
815816 *
816817 * @param right Right side of the join.
817818 * @param joinExprs Join expression.
818- * @param joinType One of: `inner`, `cross`, `outer`, `full`, `full_outer`,
819- * `left`, `left_outer`, `right`, `right_outer`, `left_semi`, `left_anti`.
819+ * @param joinType Type of join to perform. Default `inner`. Must be any of:
820+ * `inner`, `cross`, `outer`, `full`, `full_outer`, `left`, `left_outer`,
821+ * `right`, `right_outer`, `left_semi`, `left_anti`.
820822 *
821823 * @group untypedrel
822824 * @since 2.0.0
@@ -893,8 +895,9 @@ class Dataset[T] private[sql](
893895 *
894896 * @param other Right side of the join.
895897 * @param condition Join expression.
896- * @param joinType One of: `inner`, `cross`, `outer`, `full`, `full_outer`,
897- * `left`, `left_outer`, `right`, `right_outer`, `left_semi`, `left_anti`.
898+ * @param joinType Type of join to perform. Default `inner`. Must be any of:
899+ * `inner`, `cross`, `outer`, `full`, `full_outer`, `left`, `left_outer`,
900+ * `right`, `right_outer`, `left_semi`, `left_anti`.
898901 *
899902 * @group typedrel
900903 * @since 1.6.0
0 commit comments