docs: Fix many spelling mistakes.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2022-02-07 15:13:33 -08:00
committed by Tim Abbott
parent d8f4e0ffb9
commit b0ce4f1bce
190 changed files with 286 additions and 286 deletions

View File

@@ -110,8 +110,8 @@ class WebhooksCommonTestCase(ZulipTestCase):
headers = get_fixture_http_headers("some_integration", "complex_fixture")
self.assertEqual(headers, {"key": "value"})
def test_get_fixture_http_headers_for_non_existant_integration(self) -> None:
headers = get_fixture_http_headers("some_random_nonexistant_integration", "fixture_name")
def test_get_fixture_http_headers_for_non_existent_integration(self) -> None:
headers = get_fixture_http_headers("some_random_nonexistent_integration", "fixture_name")
self.assertEqual(headers, {})
@patch("zerver.lib.webhooks.common.importlib.import_module")