Skip to content

Commit e932378

Browse files
authored
Merge pull request #989 from simon04/agruments
Fix typo (agruments)
2 parents 7a0ad41 + 365edce commit e932378

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: plotly/graph_objs/graph_objs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ def update(self, dict1=None, **dict2):
573573
allows users to update with large, nested structures.
574574
575575
Note, because the dict2 packs up all the keyword arguments, you can
576-
specify the changes as a list of keyword agruments.
576+
specify the changes as a list of keyword arguments.
577577
578578
Examples:
579579
# update with dict

Diff for: plotly/plotly/plotly.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def _plot_option_logic(plot_options_from_call_signature):
109109
def iplot(figure_or_data, **plot_options):
110110
"""Create a unique url for this plot in Plotly and open in IPython.
111111
112-
plot_options keyword agruments:
112+
plot_options keyword arguments:
113113
filename (string) -- the name that will be associated with this figure
114114
fileopt ('new' | 'overwrite' | 'extend' | 'append')
115115
- 'new': create a new, unique url for this plot
@@ -167,7 +167,7 @@ def iplot(figure_or_data, **plot_options):
167167
def plot(figure_or_data, validate=True, **plot_options):
168168
"""Create a unique url for this plot in Plotly and optionally open url.
169169
170-
plot_options keyword agruments:
170+
plot_options keyword arguments:
171171
filename (string) -- the name that will be associated with this figure
172172
fileopt ('new' | 'overwrite' | 'extend' | 'append') -- 'new' creates a
173173
'new': create a new, unique url for this plot
@@ -254,7 +254,7 @@ def iplot_mpl(fig, resize=True, strip_style=False, update=None,
254254
2. makes a request to Plotly to save this figure in your account
255255
3. displays the image in your IPython output cell
256256
257-
Positional agruments:
257+
Positional arguments:
258258
fig -- a figure object from matplotlib
259259
260260
Keyword arguments:
@@ -287,7 +287,7 @@ def plot_mpl(fig, resize=True, strip_style=False, update=None, **plot_options):
287287
2. makes a request to Plotly to save this figure in your account
288288
3. opens your figure in a browser tab OR returns the unique figure url
289289
290-
Positional agruments:
290+
Positional arguments:
291291
fig -- a figure object from matplotlib
292292
293293
Keyword arguments:

0 commit comments

Comments
 (0)