Skip to content

Fix typo (agruments) #989

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 13, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plotly/graph_objs/graph_objs.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ def update(self, dict1=None, **dict2):
allows users to update with large, nested structures.

Note, because the dict2 packs up all the keyword arguments, you can
specify the changes as a list of keyword agruments.
specify the changes as a list of keyword arguments.

Examples:
# update with dict
Expand Down
8 changes: 4 additions & 4 deletions plotly/plotly/plotly.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def _plot_option_logic(plot_options_from_call_signature):
def iplot(figure_or_data, **plot_options):
"""Create a unique url for this plot in Plotly and open in IPython.

plot_options keyword agruments:
plot_options keyword arguments:
filename (string) -- the name that will be associated with this figure
fileopt ('new' | 'overwrite' | 'extend' | 'append')
- 'new': create a new, unique url for this plot
Expand Down Expand Up @@ -167,7 +167,7 @@ def iplot(figure_or_data, **plot_options):
def plot(figure_or_data, validate=True, **plot_options):
"""Create a unique url for this plot in Plotly and optionally open url.

plot_options keyword agruments:
plot_options keyword arguments:
filename (string) -- the name that will be associated with this figure
fileopt ('new' | 'overwrite' | 'extend' | 'append') -- 'new' creates a
'new': create a new, unique url for this plot
Expand Down Expand Up @@ -254,7 +254,7 @@ def iplot_mpl(fig, resize=True, strip_style=False, update=None,
2. makes a request to Plotly to save this figure in your account
3. displays the image in your IPython output cell

Positional agruments:
Positional arguments:
fig -- a figure object from matplotlib

Keyword arguments:
Expand Down Expand Up @@ -287,7 +287,7 @@ def plot_mpl(fig, resize=True, strip_style=False, update=None, **plot_options):
2. makes a request to Plotly to save this figure in your account
3. opens your figure in a browser tab OR returns the unique figure url

Positional agruments:
Positional arguments:
fig -- a figure object from matplotlib

Keyword arguments:
Expand Down