docs: Fix spelling errors caught by codespell.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-08-10 16:47:44 -07:00
committed by Tim Abbott
parent 2928bbc8bd
commit 60a25b2721
46 changed files with 64 additions and 64 deletions

View File

@@ -347,7 +347,7 @@ EVENT_HANDLER_MAP = {
} # type Dict[str, Optional[Callable[..., List[Dict[str, str]]]]]
def get_event_handler(eventkey: str) -> Callable[..., List[Dict[str, str]]]:
# The main reason for this function existance is because of mypy
# The main reason for this function existence is because of mypy
handler: Any = EVENT_HANDLER_MAP.get(eventkey)
if handler is None:
raise UnexpectedWebhookEventType("BitBucket Server", eventkey)