Skip to content

Commit b887e78

Browse files
committed
DOC: cancel series nsmallest's doc list item text bold effect
1 parent 91c9cc3 commit b887e78

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,5 @@ doc/build/html/index.html
120120
doc/tmp.sv
121121
env/
122122
doc/source/savefig/
123+
124+
.history

pandas/core/series.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3790,11 +3790,11 @@ def nsmallest(self, n: int = 5, keep: str = "first") -> Series:
37903790
Series of `n` elements:
37913791
37923792
- ``first`` : return the first `n` occurrences in order
3793-
of appearance.
3793+
of appearance.
37943794
- ``last`` : return the last `n` occurrences in reverse
3795-
order of appearance.
3795+
order of appearance.
37963796
- ``all`` : keep all occurrences. This can result in a Series of
3797-
size larger than `n`.
3797+
size larger than `n`.
37983798
37993799
Returns
38003800
-------

0 commit comments

Comments
 (0)