Skip to content

Commit af627dd

Browse files
authored
DOCS-#2578: fix simple typo, parition -> partition (#2573)
There is a small typo in modin/engines/dask/pandas_on_dask/frame/partition.py, modin/engines/ray/pandas_on_ray/frame/partition.py. Should read `partition` rather than `parition`. Signed-off-by: Tim Gates <tim.gates@iress.com>
1 parent ba507a2 commit af627dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modin/engines/dask/pandas_on_dask/frame/partition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def to_pandas(self):
125125

126126
def to_numpy(self, **kwargs):
127127
"""
128-
Convert the object stored in this parition to a NumPy array.
128+
Convert the object stored in this partition to a NumPy array.
129129
130130
Returns
131131
-------

modin/engines/ray/pandas_on_ray/frame/partition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def to_pandas(self):
9595

9696
def to_numpy(self, **kwargs):
9797
"""
98-
Convert the object stored in this parition to a NumPy array.
98+
Convert the object stored in this partition to a NumPy array.
9999
100100
Returns
101101
-------

0 commit comments

Comments
 (0)