Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion docs/source/cpp/tutorials/basic_arrow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <Array>`. 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
Expand Down