This is an automated email from the ASF dual-hosted git repository.
zanmato pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 53d7f0c4c0 MINOR: [Docs] Small grammar fix in Intro.rst (#45109)
53d7f0c4c0 is described below
commit 53d7f0c4c0310dd7f080aac8dc34dc5edaada2e8
Author: Tim Grein <[email protected]>
AuthorDate: Fri Dec 27 16:13:16 2024 +0100
MINOR: [Docs] Small grammar fix in Intro.rst (#45109)
Small grammar fix in the intro docs (missing `the`).
### Rationale for this change
Improving docs.
### What changes are included in this PR?
Small grammar fix in `docs/source/format/Intro.rst`
### Are these changes tested?
No, as these are only docs changes.
### Are there any user-facing changes?
No.
Authored-by: Tim Grein <[email protected]>
Signed-off-by: Rossi Sun <[email protected]>
---
docs/source/format/Intro.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/source/format/Intro.rst b/docs/source/format/Intro.rst
index c230be724d..cd9e302914 100644
--- a/docs/source/format/Intro.rst
+++ b/docs/source/format/Intro.rst
@@ -71,7 +71,7 @@ In a columnar format, the data is organized column-by-column
instead.
This organization makes analytical operations like filtering, grouping,
aggregations and others, more efficient thanks to memory locality.
When processing the data, the memory locations accessed by the CPU tend
-be near one another. By keeping the data contiguous in memory, it also
+to be near one another. By keeping the data contiguous in memory, it also
enables vectorization of the computations. Most modern CPUs have
`SIMD instructions`_ (a single instruction that operates on multiple values at
once) enabling parallel processing and execution of operations on vector data