Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cpp/include/cudf/join/join.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ full_join(cudf::table_view const& left_keys,
* @brief Returns a vector of row indices corresponding to a left semi-join
* between the specified tables.
*
* @deprecated Use the object-oriented filtered_join `cudf::filtered_join::anti_join` instead
* @deprecated Use the object-oriented filtered_join `cudf::filtered_join::semi_join` instead
*
* The returned vector contains the row indices from the left table
* for which there is a matching row in the right table.
Expand Down Expand Up @@ -237,7 +237,7 @@ full_join(cudf::table_view const& left_keys,
* @brief Returns a vector of row indices corresponding to a left anti join
* between the specified tables.
*
* @deprecated Use the object-oriented filtered_join `cudf::filtered_join::semi_join` instead
* @deprecated Use the object-oriented filtered_join `cudf::filtered_join::anti_join` instead
*
* The returned vector contains the row indices from the left table
* for which there is no matching row in the right table.
Expand Down