From f332c893a14b1aa99519f1d26527841d513085c3 Mon Sep 17 00:00:00 2001 From: Arnav Ahire Date: Sat, 22 Aug 2026 16:26:18 +0530 Subject: [PATCH] docs(tools): fix spelling typos in mpl_to_plotly docstring --- plotly/tools.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plotly/tools.py b/plotly/tools.py index b087550743..93425b5856 100644 --- a/plotly/tools.py +++ b/plotly/tools.py @@ -72,13 +72,13 @@ def mpl_to_plotly(fig, resize=False, strip_style=False, verbose=False): of plotly.plot to have the graph appear directly in the IPython notebook. Note, this function gives the user access to a simple, one-line way to - render an mpl figure in plotly. If you need to trouble shoot, you can do - this step manually by NOT running this fuction and entereing the following: + render an mpl figure in plotly. If you need to troubleshoot, you can do + this step manually by NOT running this function and entering the following: =========================================================================== from plotly.matplotlylib import mplexporter, PlotlyRenderer - # create an mpl figure and store it under a varialble 'fig' + # create an mpl figure and store it under a variable 'fig' renderer = PlotlyRenderer() exporter = mplexporter.Exporter(renderer)