Skip to content

Commit

Permalink
DOC: Fix double back-tick in 'Reshaping by Melt' section (#17030)
Browse files Browse the repository at this point in the history
See current stable docs for the issue: https://pandas.pydata.org/pandas-docs/stable/reshaping.html#reshaping-by-melt

The double ` is causing the entire paragraph to be fixed width until the next double `. This commit removes the extra "`"
  • Loading branch information
nickgarvey authored and gfyoung committed Jul 20, 2017
1 parent 031d7a9 commit f511d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/reshaping.rst
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ the right thing:
Reshaping by Melt
-----------------

The top-level :func:``melt` and :func:`~DataFrame.melt` functions are useful to
The top-level :func:`melt` and :func:`~DataFrame.melt` functions are useful to
massage a DataFrame into a format where one or more columns are identifier variables,
while all other columns, considered measured variables, are "unpivoted" to the
row axis, leaving just two non-identifier columns, "variable" and "value". The
Expand Down

0 comments on commit f511d82

Please sign in to comment.