Skip to content

Commit

Permalink
Merge pull request #1380 from jbampton/fix-spelling
Browse files Browse the repository at this point in the history
Fix spelling
  • Loading branch information
alexcjohnson committed Aug 27, 2020
2 parents fed4a91 + dcf5232 commit 3222191
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dash/dash.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def __init__(
"via the Dash constructor"
)

# keep title as a class property for backwards compatability
# keep title as a class property for backwards compatibility
self.title = title

# list of dependencies - this one is used by the back end for dispatching
Expand Down
2 changes: 1 addition & 1 deletion dash/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def handle_callback_args(args, kwargs):
out0 = kwargs.get("output", args[0] if args else None)
if not isinstance(out0, (list, tuple)):
# unless it was explicitly provided as a list, a single output
# sholuld be unwrapped. That ensures the return value of the
# should be unwrapped. That ensures the return value of the
# callback is also not expected to be wrapped in a list.
outputs = outputs[0]

Expand Down
2 changes: 1 addition & 1 deletion dash/testing/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ def get_logs(self):
return None

def reset_log_timestamp(self):
"""reset_log_timestamp only work with chrome webdrier."""
"""reset_log_timestamp only work with chrome webdriver."""
if self.driver.name.lower() == "chrome":
entries = self.driver.get_log("browser")
if entries:
Expand Down

0 comments on commit 3222191

Please sign in to comment.