Skip to content

Commit 6d610a4

Browse files
DOC: Fixed more warnings (#20542)
1 parent aa3fefc commit 6d610a4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

doc/source/merging.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ and ``right`` is a subclass of DataFrame, the return type will still be
583583

584584
``merge`` is a function in the pandas namespace, and it is also available as a
585585
``DataFrame`` instance method :meth:`~DataFrame.merge`, with the calling
586-
``DataFrame `` being implicitly considered the left object in the join.
586+
``DataFrame`` being implicitly considered the left object in the join.
587587

588588
The related :meth:`~DataFrame.join` method, uses ``merge`` internally for the
589589
index-on-index (by default) and column(s)-on-index join. If you are joining on
@@ -1202,7 +1202,7 @@ Overlapping value columns
12021202
~~~~~~~~~~~~~~~~~~~~~~~~~
12031203

12041204
The merge ``suffixes`` argument takes a tuple of list of strings to append to
1205-
overlapping column names in the input ``DataFrame``s to disambiguate the result
1205+
overlapping column names in the input ``DataFrame``\ s to disambiguate the result
12061206
columns:
12071207

12081208
.. ipython:: python

doc/source/whatsnew/v0.17.1.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ We can render the HTML to get the following table.
5858
:file: whatsnew_0171_html_table.html
5959

6060
:class:`~pandas.core.style.Styler` interacts nicely with the Jupyter Notebook.
61-
See the :ref:`documentation <style.ipynb>` for more.
61+
See the :doc:`documentation <style>` for more.
6262

6363
.. _whatsnew_0171.enhancements:
6464

doc/source/whatsnew/v0.20.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ For example, after running the following, ``styled.xlsx`` renders as below:
389389
import os
390390
os.remove('styled.xlsx')
391391

392-
See the :ref:`Style documentation <style.ipynb#Export-to-Excel>` for more detail.
392+
See the :ref:`Style documentation </style.ipynb#Export-to-Excel>` for more detail.
393393

394394
.. _whatsnew_0200.enhancements.intervalindex:
395395

@@ -499,7 +499,7 @@ Other Enhancements
499499
- ``DataFrame.to_excel()`` has a new ``freeze_panes`` parameter to turn on Freeze Panes when exporting to Excel (:issue:`15160`)
500500
- ``pd.read_html()`` will parse multiple header rows, creating a MutliIndex header. (:issue:`13434`).
501501
- HTML table output skips ``colspan`` or ``rowspan`` attribute if equal to 1. (:issue:`15403`)
502-
- :class:`pandas.io.formats.style.Styler` template now has blocks for easier extension, :ref:`see the example notebook <style.ipynb#Subclassing>` (:issue:`15649`)
502+
- :class:`pandas.io.formats.style.Styler` template now has blocks for easier extension, see the :ref:`example notebook </style.ipynb#Subclassing>` (:issue:`15649`)
503503
- :meth:`Styler.render() <pandas.io.formats.style.Styler.render>` now accepts ``**kwargs`` to allow user-defined variables in the template (:issue:`15649`)
504504
- Compatibility with Jupyter notebook 5.0; MultiIndex column labels are left-aligned and MultiIndex row-labels are top-aligned (:issue:`15379`)
505505
- ``TimedeltaIndex`` now has a custom date-tick formatter specifically designed for nanosecond level precision (:issue:`8711`)

doc/source/whatsnew/v0.23.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,6 @@ for storing ip addresses.
330330
.. code-block:: ipython
331331

332332
In [3]: ser = pd.Series(values)
333-
...:
334333

335334
In [4]: ser
336335
Out[4]:
@@ -342,8 +341,9 @@ for storing ip addresses.
342341
Notice that the dtype is ``ip``. The missing value semantics of the underlying
343342
array are respected:
344343

344+
.. code-block:: ipython
345+
345346
In [5]: ser.isna()
346-
...:
347347
Out[5]:
348348
0 True
349349
1 False

0 commit comments

Comments
 (0)