Skip to content

Commit

Permalink
Fix typo in docblock
Browse files Browse the repository at this point in the history
unefined -> undefined
  • Loading branch information
ben-xo authored and auvipy committed Jul 14, 2022
1 parent 02b4249 commit 4947717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vine/funtools.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


def maybe_promise(p):
"""Return None if p is unefined, otherwise make sure it's a promise."""
"""Return None if p is undefined, otherwise make sure it's a promise."""
if p:
if not isinstance(p, Thenable):
return promise(p)
Expand Down

0 comments on commit 4947717

Please sign in to comment.