Skip to content

Commit a6694b9

Browse files
Updating documentation
1 parent 584ebd2 commit a6694b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/whatsnew/v0.19.1.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ Bug Fixes
4444

4545

4646
- Bug in ``pd.concat`` where names of the ``keys`` were not propagated to the resulting ``MultiIndex`` (:issue:`14252`)
47-
- Bug in ``pd.concat`` where ``axis`` cannot take string parameters ``rows`` or ``columns (:issue:`14369`)
47+
- Bug in ``pd.concat`` where ``axis`` cannot take string parameters ``'rows'`` or ``'columns'`` (:issue:`14369`)
4848
- Bug in ``MultiIndex.set_levels`` where illegal level values were still set after raising an error (:issue:`13754`)

pandas/tools/merge.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ def concat(objs, axis=0, join='outer', join_axes=None, ignore_index=False,
12831283
argument, unless it is passed, in which case the values will be
12841284
selected (see below). Any None objects will be dropped silently unless
12851285
they are all None in which case a ValueError will be raised
1286-
axis : {0, 1, 'rows', 'columns', ...}, default 0
1286+
axis : {0/'index'/'rows', 1/'columns'}, default 0
12871287
The axis to concatenate along
12881288
join : {'inner', 'outer'}, default 'outer'
12891289
How to handle indexes on other axis(es)

0 commit comments

Comments
 (0)