From ed1df2ef6703d298c9651751310f5d5481f8994b Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Fri, 20 Nov 2015 07:43:53 -0600 Subject: [PATCH] DOC: Clarify foramtting --- doc/source/html-styling.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/html-styling.ipynb b/doc/source/html-styling.ipynb index fc59c3ca88100..6f4569ab32f89 100644 --- a/doc/source/html-styling.ipynb +++ b/doc/source/html-styling.ipynb @@ -2525,7 +2525,7 @@ "source": [ "Above we used `Styler.apply` to pass in each column one at a time.\n", "\n", - "

*Debugging Tip*: If you're having trouble writing your style function, try just passing it into df.apply. Styler.apply uses that internally, so the result should be the same.

\n", + "

*Debugging Tip*: If you're having trouble writing your style function, try just passing it into DataFrame.apply. Internally, Styler.apply uses DataFrame.apply so the result should be the same.

\n", "\n", "What if you wanted to highlight just the maximum value in the entire table?\n", "Use `.apply(function, axis=None)` to indicate that your function wants the entire table, not one column or row at a time. Let's try that next.\n",