Skip to content

Commit

Permalink
Fix incorrect example in pylibcudf docs (#17912)
Browse files Browse the repository at this point in the history
Fixes incorrect pylibcudf/libcudf example created in #17803.

Authors:
  - Matthew Murray (https://github.com/Matt711)

Approvers:
  - Vyas Ramasubramani (https://github.com/vyasr)

URL: #17912
  • Loading branch information
Matt711 authored Feb 4, 2025
1 parent 8b89ea0 commit 2bada0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/cudf/source/pylibcudf/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pylibcudf:
import pylibcudf as plc
source = plc.io.SourceInfo(["dataset.parquet"])
options = plc.io.parquet.ParquetReaderOptions.builder(source)
options = plc.io.parquet.ParquetReaderOptions.builder(source).build()
table = plc.io.parquet.read_parquet(options)
libcudf:
Expand All @@ -26,7 +26,7 @@ libcudf:
int main()
{
auto source = cudf::io::source_info("dataset.parquet");
auto options = cudf::io::parquet_reader_options::builder(source);
auto options = cudf::io::parquet_reader_options::builder(source).build();
auto table = cudf::io::read_parquet(options);
}
Expand Down

0 comments on commit 2bada0d

Please sign in to comment.