Skip to content
Closed
Show file tree
Hide file tree
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/developers/archery.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Installation
------------

Archery requires Python 3.5 or later. It is recommended to install archery in
*editable* mode with the ``-e`` flag to automatically update the intallation
*editable* mode with the ``-e`` flag to automatically update the installation
when pulling the Arrow repository.

.. code:: bash
Expand Down
4 changes: 2 additions & 2 deletions docs/source/developers/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ From time to time the community has discussions on specific types of features
and improvements that they expect to support. This section outlines decisions
that have been made in this regard.

Endianess
+++++++++
Endianness
++++++++++

The Arrow format allows setting endianness. Due to the popularity of
little endian architectures most of implementation assume little endian by
Expand Down
2 changes: 1 addition & 1 deletion docs/source/developers/docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ can be useful to skip the build phases:

# if the second run tries the build the image again and none of the files
# referenced in the relevant dockerfile have changed, then it indicates a
# cache miss caused by the issue desribed above
# cache miss caused by the issue described above
archery docker run conda-python

# since the image is properly built with the first command, there is no
Expand Down
2 changes: 1 addition & 1 deletion docs/source/java/vector.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Some points to note about the steps above:

* For fixed width vectors (e.g. IntVector), we can set values at different indices in arbitrary orders.
For variable width vectors (e.g. VarCharVector), however, we must set values in non-decreasing order of the
indices. Otherwise, the values after the set positiion will become invalid. For example, suppose we use the
indices. Otherwise, the values after the set position will become invalid. For example, suppose we use the
following statements to populate a variable width vector:

.. code-block:: Java
Expand Down
2 changes: 1 addition & 1 deletion docs/source/python/dataset.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ For those familiar with the existing :class:`pyarrow.parquet.ParquetDataset` for
reading Parquet datasets: ``pyarrow.dataset``'s goal is similar but not specific
to the Parquet format and not tied to Python: the same datasets API is exposed
in the R bindings or Arrow. In addition ``pyarrow.dataset`` boasts improved
perfomance and new features (e.g. filtering within files rather than only on
performance and new features (e.g. filtering within files rather than only on
partition keys).


Expand Down