From 141a95a89d9e5b50b03e257d9e0707417b297742 Mon Sep 17 00:00:00 2001 From: alexeyroytman <33158117+alexeyroytman@users.noreply.github.com> Date: Wed, 6 May 2026 09:28:41 +0300 Subject: [PATCH] [C++ doc] pointer dereference instead of dot in parquet.rst --- docs/source/cpp/parquet.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/source/cpp/parquet.rst b/docs/source/cpp/parquet.rst index 045f7f80f634..37f623e2b5ef 100644 --- a/docs/source/cpp/parquet.rst +++ b/docs/source/cpp/parquet.rst @@ -256,11 +256,11 @@ To configure how Parquet files are written, use the :class:`WriterProperties::Bu std::shared_ptr props = WriterProperties::Builder() .max_row_group_length(64 * 1024) - .created_by("My Application") - .version(ParquetVersion::PARQUET_2_6) - .data_page_version(ParquetDataPageVersion::V2) - .compression(Compression::SNAPPY) - .build(); + ->created_by("My Application") + ->version(ParquetVersion::PARQUET_2_6) + ->data_page_version(ParquetDataPageVersion::V2) + ->compression(Compression::SNAPPY) + ->build(); The ``max_row_group_length`` sets an upper bound on the number of rows per row group that takes precedent over the ``chunk_size`` passed in the write methods.