From 422f93c0ac42290e586ceaed17fab2fcef2c4983 Mon Sep 17 00:00:00 2001 From: Nghia Truong Date: Thu, 23 Mar 2023 21:32:32 -0700 Subject: [PATCH] Fix docs --- cpp/src/table/row_operators.cu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/src/table/row_operators.cu b/cpp/src/table/row_operators.cu index 2a49a47a9e3..30f8f89fd21 100644 --- a/cpp/src/table/row_operators.cu +++ b/cpp/src/table/row_operators.cu @@ -154,8 +154,8 @@ table_view remove_struct_child_offsets(table_view table) * same row. * * In the case of structs column having its first child is a lists column such as - * `Struct, int>`, after decomposition we get three columns `Struct>`, - * `List`, and `int`. + * `Struct, float>`, after decomposition we get three columns `Struct<>`, + * `List`, and `float`. * * @param table The table whose struct columns to decompose. * @param column_order The per-column order if using output with lexicographic comparison