diff --git a/doc/source/merging.rst b/doc/source/merging.rst index cfd3f9e88e4ea..74b21c21252ec 100644 --- a/doc/source/merging.rst +++ b/doc/source/merging.rst @@ -583,7 +583,7 @@ and ``right`` is a subclass of DataFrame, the return type will still be ``merge`` is a function in the pandas namespace, and it is also available as a ``DataFrame`` instance method :meth:`~DataFrame.merge`, with the calling -``DataFrame `` being implicitly considered the left object in the join. +``DataFrame`` being implicitly considered the left object in the join. The related :meth:`~DataFrame.join` method, uses ``merge`` internally for the index-on-index (by default) and column(s)-on-index join. If you are joining on @@ -1202,7 +1202,7 @@ Overlapping value columns ~~~~~~~~~~~~~~~~~~~~~~~~~ The merge ``suffixes`` argument takes a tuple of list of strings to append to -overlapping column names in the input ``DataFrame``s to disambiguate the result +overlapping column names in the input ``DataFrame``\ s to disambiguate the result columns: .. ipython:: python diff --git a/doc/source/whatsnew/v0.17.1.txt b/doc/source/whatsnew/v0.17.1.txt index 6e5e113e859d7..e1b561c4deacb 100644 --- a/doc/source/whatsnew/v0.17.1.txt +++ b/doc/source/whatsnew/v0.17.1.txt @@ -58,7 +58,7 @@ We can render the HTML to get the following table. :file: whatsnew_0171_html_table.html :class:`~pandas.core.style.Styler` interacts nicely with the Jupyter Notebook. -See the :ref:`documentation ` for more. +See the :doc:`documentation