Skip to content

Commit 84b36b3

Browse files
luzpazpandres
authored andcommitted
DOC: misc typos (pandas-dev#20029)
1 parent b478686 commit 84b36b3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/source/categorical.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ are consistent among all columns.
177177
.. note::
178178

179179
To perform table-wise conversion, where all labels in the entire ``DataFrame`` are used as
180-
categories for each column, the ``categories`` parameter can be determined programatically by
180+
categories for each column, the ``categories`` parameter can be determined programmatically by
181181
``categories = pd.unique(df.values.ravel())``.
182182

183183
If you already have ``codes`` and ``categories``, you can use the

pandas/core/groupby.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4842,7 +4842,7 @@ def _apply_to_column_groupbys(self, func):
48424842
keys=self._selected_obj.columns, axis=1)
48434843

48444844
def _fill(self, direction, limit=None):
4845-
"""Overriden method to join grouped columns in output"""
4845+
"""Overridden method to join grouped columns in output"""
48464846
res = super(DataFrameGroupBy, self)._fill(direction, limit=limit)
48474847
output = collections.OrderedDict(
48484848
(grp.name, grp.grouper) for grp in self.grouper.groupings)

pandas/tests/io/test_excel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,7 @@ class _WriterBase(SharedItems):
10141014
def set_engine_and_path(self, request, merge_cells, engine, ext):
10151015
"""Fixture to set engine and open file for use in each test case
10161016
1017-
Rather than requiring `engine=...` to be provided explictly as an
1017+
Rather than requiring `engine=...` to be provided explicitly as an
10181018
argument in each test, this fixture sets a global option to dictate
10191019
which engine should be used to write Excel files. After executing
10201020
the test it rolls back said change to the global option.

0 commit comments

Comments
 (0)