Skip to content

Commit 177bfe2

Browse files
author
Rehan Durrani
committed
Merge branch 'bugs/4522' of https://github.com/devin-petersohn/modin into bugs/4522
Signed-off-by: Rehan Durrani <[email protected]>
2 parents 75c6089 + 5a11af0 commit 177bfe2

File tree

51 files changed

+364
-218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+364
-218
lines changed

docs/development/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ want to review in order to get started.
1313

1414
Also, feel free to join the discussions on the `developer mailing list`_.
1515

16-
If you want a quick guide to getting your development enviroment setup, please
16+
If you want a quick guide to getting your development environment setup, please
1717
use `the contributing instructions on GitHub`_.
1818

1919
Certificate of Origin

docs/development/partition_api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ from raw futures objects.
99
Partition IPs
1010
-------------
1111
For finer grained placement control, Modin also provides an API to get the IP addresses of the nodes that hold each partition.
12-
You can pass the partitions having needed IPs to your function. It can help with minimazing of data movement between nodes.
12+
You can pass the partitions having needed IPs to your function. It can help with minimizing of data movement between nodes.
1313

1414
Partition API implementations
1515
-----------------------------

docs/flow/modin/config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Modin Configuration Settings
55

66
To adjust Modin's default behavior, you can set the value of Modin
77
configs by setting an environment variable or by using the
8-
``modin.config`` API. To list all avaliable configs in Modin, please
8+
``modin.config`` API. To list all available configs in Modin, please
99
run ``python -m modin.config`` to print all
1010
Modin configs with descriptions.
1111

docs/flow/modin/core/dataframe/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Core Modin Dataframe Objects
44
============================
55

6-
Modin paritions data to scale efficiently.
6+
Modin partitions data to scale efficiently.
77
To keep track of everything a few key classes are introduced: ``Dataframe``, ``Partition``, ``AxisPartiton`` and ``PartitionManager``.
88

99
* ``Dataframe`` is the class conforming to Dataframe Algebra.

docs/flow/modin/core/dataframe/pandas/dataframe.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The class serves as the intermediate level
88
between ``pandas`` query compiler and conforming partition manager. All queries formed
99
at the query compiler layer are ingested by this class and then conveyed jointly with the stored partitions
1010
into the partition manager for processing. Direct partitions manipulation by this class is prohibited except
11-
cases if an operation is striclty private or protected and called inside of the class only. The class provides
11+
cases if an operation is strictly private or protected and called inside of the class only. The class provides
1212
significantly reduced set of operations that fit plenty of pandas operations.
1313

1414
Main tasks of :py:class:`~modin.core.dataframe.pandas.dataframe.dataframe.PandasDataframe` are storage of partitions, manipulation with labels of axes and

docs/flow/modin/core/dataframe/pandas/partitioning/partition_manager.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Partition manager can apply user-passed (arbitrary) function in different modes:
1818

1919
* block-wise (apply a function to individual block partitions):
2020

21-
* optinally accepting partition indices along each axis
21+
* optionally accepting partition indices along each axis
2222
* optionally accepting an item to be split so parts of it would be sent to each partition
2323

2424
* along a full axis (apply a function to an entire column or row made up of block partitions when user function needs information about the whole axis)

docs/flow/modin/core/execution/dask/implementations/pandas_on_dask/partitioning/partition_manager.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PandasOnDaskDataframePartitionManager
22
"""""""""""""""""""""""""""""""""""""
33

44
This class is the specific implementation of :py:class:`~modin.core.dataframe.pandas.partitioning.partition_manager.PandasDataframePartitionManager`
5-
using Dask as the execution engine. This class is responsible for partition manipulation and applying a funcion to
5+
using Dask as the execution engine. This class is responsible for partition manipulation and applying a function to
66
block/row/column partitions.
77

88
Public API

docs/flow/modin/core/execution/python/implementations/pandas_on_python/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ PandasOnPython Dataframe implementation
3333
This page describes implementation of :doc:`Modin PandasDataframe Objects </flow/modin/core/dataframe/pandas/index>`
3434
specific for `PandasOnPython` execution. Since Python engine doesn't allow computation parallelization,
3535
operations on partitions are performed sequentially. The absence of parallelization doesn't give any
36-
perfomance speed-up, so ``PandasOnPython`` is used for testing purposes only.
36+
performance speed-up, so ``PandasOnPython`` is used for testing purposes only.
3737

3838
* :doc:`PandasOnPythonDataframe <dataframe>`
3939
* :doc:`PandasOnPythonDataframePartition <partitioning/partition>`

docs/flow/modin/core/execution/python/implementations/pandas_on_python/partitioning/partition_manager.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PandasOnPythonDataframePartition
33

44
The class is specific implementation of :py:class:`~modin.core.dataframe.pandas.partitioning.partition_manager.PandasDataframePartitionManager`
55
using Python as the execution engine. This class is responsible for partitions manipulation and applying
6-
a funcion to block/row/column partitions.
6+
a function to block/row/column partitions.
77

88
Public API
99
----------

docs/flow/modin/core/execution/ray/implementations/pandas_on_ray/partitioning/partition_manager.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PandasOnRayDataframePartitionManager
22
""""""""""""""""""""""""""""""""""""
33

44
This class is the specific implementation of :py:class:`~modin.core.execution.ray.generic.partitioning.GenericRayDataframePartitionManager`
5-
using Ray distributed engine. This class is responsible for partition manipulation and applying a funcion to
5+
using Ray distributed engine. This class is responsible for partition manipulation and applying a function to
66
block/row/column partitions.
77

88
Public API

0 commit comments

Comments
 (0)