Skip to content

Commit 4b19c3e

Browse files
Merge pull request #11869 from jorisvandenbossche/doc-fixups
DOC: paramaters -> parameters
2 parents ffe8c8d + abbead3 commit 4b19c3e

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

doc/source/whatsnew/v0.15.2.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Bug Fixes
194194
- Bug in Timestamp-Timestamp not returning a Timedelta type and datelike-datelike ops with timezones (:issue:`8865`)
195195
- Made consistent a timezone mismatch exception (either tz operated with None or incompatible timezone), will now return ``TypeError`` rather than ``ValueError`` (a couple of edge cases only), (:issue:`8865`)
196196
- Bug in using a ``pd.Grouper(key=...)`` with no level/axis or level only (:issue:`8795`, :issue:`8866`)
197-
- Report a ``TypeError`` when invalid/no paramaters are passed in a groupby (:issue:`8015`)
197+
- Report a ``TypeError`` when invalid/no parameters are passed in a groupby (:issue:`8015`)
198198
- Bug in packaging pandas with ``py2app/cx_Freeze`` (:issue:`8602`, :issue:`8831`)
199199
- Bug in ``groupby`` signatures that didn't include \*args or \*\*kwargs (:issue:`8733`).
200200
- ``io.data.Options`` now raises ``RemoteDataError`` when no expiry dates are available from Yahoo and when it receives no data from Yahoo (:issue:`8761`), (:issue:`8783`).
@@ -238,4 +238,3 @@ Bug Fixes
238238
- Bug in plotting if sharex was enabled and index was a timeseries, would show labels on multiple axes (:issue:`3964`).
239239
- Bug where passing a unit to the TimedeltaIndex constructor applied the to nano-second conversion twice. (:issue:`9011`).
240240
- Bug in plotting of a period-like array (:issue:`9012`)
241-

pandas/core/index.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1494,7 +1494,7 @@ def sortlevel(self, level=None, ascending=True, sort_remaining=None):
14941494
ascending : boolean, default True
14951495
False to sort in descending order
14961496
1497-
level, sort_remaining are compat paramaters
1497+
level, sort_remaining are compat parameters
14981498
14991499
Returns
15001500
-------

pandas/io/pytables.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ def append_to_multiple(self, d, value, selector, data_columns=None,
990990

991991
def create_table_index(self, key, **kwargs):
992992
""" Create a pytables index on the table
993-
Paramaters
993+
Parameters
994994
----------
995995
key : object (the node to index)
996996
@@ -3119,7 +3119,7 @@ def create_index(self, columns=None, optlevel=None, kind=None):
31193119
note: cannot index Time64Col() or ComplexCol currently;
31203120
PyTables must be >= 3.0
31213121
3122-
Paramaters
3122+
Parameters
31233123
----------
31243124
columns : False (don't create an index), True (create all columns
31253125
index), None or list_like (the indexers to index)

pandas/src/reduce.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ cdef class BlockSlider:
592592
def reduce(arr, f, axis=0, dummy=None, labels=None):
593593
"""
594594
595-
Paramaters
595+
Parameters
596596
-----------
597597
arr : NDFrame object
598598
f : function

pandas/tseries/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def round(self, freq):
4848
"""
4949
Round the index to the specified freq; this is a floor type of operation
5050
51-
Paramaters
51+
Parameters
5252
----------
5353
freq : freq string/object
5454

0 commit comments

Comments
 (0)