8000 DOC: Clean sort_values and sort_index docstrings by dsaxton · Pull Request #24843 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC: Clean sort_values and sort_index docstrings #24843

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jan 27, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use bool not boolean
  • Loading branch information
Daniel Saxton committed Jan 24, 2019
commit 171acfdc9a0b35d1a00f3d3d0e2897bd2f3fd877
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4064,7 +4064,7 @@ def sort_index(self, axis=0, level=None, ascending=True, inplace=False,
axis : %(axes)s to direct sorting
level : int or level name or list of ints or list of level names
If not None, sort on values in specified index level(s).
ascending : boolean, default True
ascending : bool, default True
Sort ascending vs. descending.
inplace : bool, default False
If True, perform operation in-place
Expand Down
0