Skip to content

Commit 5020a61

Browse files
authored
Fix typo in melt value_name futurewarning (#38301)
1 parent 03e5858 commit 5020a61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/reshape/melt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def melt(
4242
if value_name in frame.columns:
4343
warnings.warn(
4444
"This dataframe has a column name that matches the 'value_name' column "
45-
"name of the resultiing Dataframe. "
45+
"name of the resulting Dataframe. "
4646
"In the future this will raise an error, please set the 'value_name' "
4747
"parameter of DataFrame.melt to a unique name.",
4848
FutureWarning,

0 commit comments

Comments
 (0)