From 2bf371e356e62f23c9f474a843a967a81638050b Mon Sep 17 00:00:00 2001 From: Ghostal Date: Wed, 27 Mar 2019 10:55:06 +0000 Subject: [PATCH] Fix spelling of "guarantee" word in comments PR #3666 by @SirGhostal --- aiohttp/web_runner.py | 2 +- docs/index.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aiohttp/web_runner.py b/aiohttp/web_runner.py index 391adb51c74..a0d88b55733 100644 --- a/aiohttp/web_runner.py +++ b/aiohttp/web_runner.py @@ -215,7 +215,7 @@ async def cleanup(self) -> None: # The loop over sites is intentional, an exception on gather() # leaves self._sites in unpredictable state. - # The loop guaranties that a site is either deleted on success or + # The loop guarantees that a site is either deleted on success or # still present on failure for site in list(self._sites): await site.stop() diff --git a/docs/index.rst b/docs/index.rst index 413b65fb24f..f26dc1c5088 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -178,7 +178,7 @@ Policy for Backward Incompatible Changes *aiohttp* keeps backward compatibility. After deprecating some *Public API* (method, class, function argument, -etc.) the library guaranties the usage of *deprecated API* is still +etc.) the library guarantees the usage of *deprecated API* is still allowed at least for a year and half after publishing new release with deprecation.