Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC] Update typo in docs example of structs_column_wrapper #14949

Merged
merged 2 commits into from
Feb 5, 2024
Merged
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions cpp/include/cudf_test/column_wrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1820,7 +1820,7 @@ class structs_column_wrapper : public detail::column_wrapper {
* child_columns.push_back(std::move(child_int_col));
* child_columns.push_back(std::move(child_string_col));
*
* struct_column_wrapper struct_column_wrapper{
* structs_column_wrapper struct_column_wrapper{
karthikeyann marked this conversation as resolved.
Show resolved Hide resolved
* child_cols,
* {1,0,1,0,1} // Validity.
* };
Expand All @@ -1846,7 +1846,7 @@ class structs_column_wrapper : public detail::column_wrapper {
* fixed_width_column_wrapper<int32_t> child_int_col_wrapper{ 1, 2, 3, 4, 5 };
* string_column_wrapper child_string_col_wrapper {"All", "the", "leaves", "are", "brown"};
*
* struct_column_wrapper struct_column_wrapper{
* structs_column_wrapper struct_column_wrapper{
* {child_int_col_wrapper, child_string_col_wrapper}
* {1,0,1,0,1} // Validity.
* };
Expand Down Expand Up @@ -1882,7 +1882,7 @@ class structs_column_wrapper : public detail::column_wrapper {
* fixed_width_column_wrapper<int32_t> child_int_col_wrapper{ 1, 2, 3, 4, 5 };
* string_column_wrapper child_string_col_wrapper {"All", "the", "leaves", "are", "brown"};
*
* struct_column_wrapper struct_column_wrapper{
* structs_column_wrapper struct_column_wrapper{
* {child_int_col_wrapper, child_string_col_wrapper}
* cudf::detail::make_counting_transform_iterator(0, [](auto i){ return i%2; }) // Validity.
* };
Expand Down
Loading