diff --git a/docs/source/developers/archery.rst b/docs/source/developers/archery.rst index 012dffb0491..7508ba1bf07 100644 --- a/docs/source/developers/archery.rst +++ b/docs/source/developers/archery.rst @@ -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 diff --git a/docs/source/developers/contributing.rst b/docs/source/developers/contributing.rst index 20f33f08ef0..1eeeafe07fe 100644 --- a/docs/source/developers/contributing.rst +++ b/docs/source/developers/contributing.rst @@ -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 diff --git a/docs/source/developers/docker.rst b/docs/source/developers/docker.rst index cdf77a754be..eaabad90df1 100644 --- a/docs/source/developers/docker.rst +++ b/docs/source/developers/docker.rst @@ -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 diff --git a/docs/source/java/vector.rst b/docs/source/java/vector.rst index d4e644c7723..f114c050c81 100644 --- a/docs/source/java/vector.rst +++ b/docs/source/java/vector.rst @@ -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 diff --git a/docs/source/python/dataset.rst b/docs/source/python/dataset.rst index 08b8ecee70b..e77c6113f7d 100644 --- a/docs/source/python/dataset.rst +++ b/docs/source/python/dataset.rst @@ -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).