From f511d8237322589c59eff8c16ffe00b8293ff4a1 Mon Sep 17 00:00:00 2001 From: Nick Garvey Date: Wed, 19 Jul 2017 23:48:22 -0700 Subject: [PATCH] DOC: Fix double back-tick in 'Reshaping by Melt' section (#17030) 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 "`" --- doc/source/reshaping.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/reshaping.rst b/doc/source/reshaping.rst index 5f125e329f6f1..3dce73b302c7c 100644 --- a/doc/source/reshaping.rst +++ b/doc/source/reshaping.rst @@ -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