From f9bf015c1fd73f43a0eec5ad86430508d5909e21 Mon Sep 17 00:00:00 2001 From: Bryce Mecum Date: Thu, 8 Feb 2024 10:24:34 -0900 Subject: [PATCH] Tweak language in basic_arrow.rst --- docs/source/cpp/tutorials/basic_arrow.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/cpp/tutorials/basic_arrow.rst b/docs/source/cpp/tutorials/basic_arrow.rst index 409dfcc40d2..0f2e8539f85 100644 --- a/docs/source/cpp/tutorials/basic_arrow.rst +++ b/docs/source/cpp/tutorials/basic_arrow.rst @@ -197,7 +197,7 @@ Making a ChunkedArray Let’s say that we want an array made up of sub-arrays, because it can be useful for avoiding data copies when concatenating, for parallelizing work, for fitting each chunk -cutely into cache, or for exceeding the 2,147,483,647 row limit in a +into cache, or for exceeding the 2,147,483,647 row limit in a standard Arrow :class:`Array`. For this, Arrow offers :class:`ChunkedArray`, which can be made up of individual Arrow :class:`Arrays `. In this example, we can reuse the arrays we made earlier in part of our chunked array, allowing us to extend them without having to copy