Skip to content

Commit 60f7c22

Browse files
committed
docstring adjusted
1 parent ecf0887 commit 60f7c22

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pandas/core/indexes/datetimes.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1732,16 +1732,16 @@ def freq(self, value):
17321732
'is_month_end',
17331733
'is_month_end',
17341734
"""
1735-
Return a boolean indicating if the date is the last day of the month.
1735+
Return a boolean indicating whether the date is the last day of the month.
17361736
17371737
Returns
17381738
-------
1739-
is_month_end : Series of boolean
1739+
is_month_end : Series of boolean.
17401740
17411741
See Also
17421742
--------
1743-
is_month_start : Returns a boolean indicating if the date is the first day
1744-
of the month.
1743+
is_month_start : Return a boolean indicating whether the date is
1744+
the first day of the month.
17451745
17461746
Examples
17471747
--------
@@ -1751,7 +1751,7 @@ def freq(self, value):
17511751
1 2018-02-28
17521752
2 2018-03-01
17531753
dtype: datetime64[ns]
1754-
>>> dates.dt.is_month_start
1754+
>>> dates.dt.is_month_end
17551755
0 False
17561756
1 True
17571757
2 False

0 commit comments

Comments
 (0)