From f04147d9490df68b1fe1bb53991062d82017f865 Mon Sep 17 00:00:00 2001 From: Lele Gaifax Date: Sun, 24 Jan 2021 13:59:03 -0500 Subject: Fix many spell glitches in docstrings and comments These were revealed by running `pylint --disable all --enable spelling --spelling-dict en_US` over all sources. Closes: #5868 Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/5868 Pull-request-sha: bb249195d92e3b806e81ecf1192d5a1b3cd5db48 Change-Id: I96080ec93a9fbd20ce21e9e16265b3c77f22bb14 --- lib/sqlalchemy/ext/asyncio/result.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/sqlalchemy/ext/asyncio/result.py') diff --git a/lib/sqlalchemy/ext/asyncio/result.py b/lib/sqlalchemy/ext/asyncio/result.py index 9c7e0420f..915226b8c 100644 --- a/lib/sqlalchemy/ext/asyncio/result.py +++ b/lib/sqlalchemy/ext/asyncio/result.py @@ -225,7 +225,7 @@ class AsyncResult(AsyncCommon): # type: () -> Any """Return exactly one scalar result or raise an exception. - This is equvalent to calling :meth:`_asyncio.AsyncResult.scalars` and + This is equivalent to calling :meth:`_asyncio.AsyncResult.scalars` and then :meth:`_asyncio.AsyncResult.one`. .. seealso:: @@ -241,7 +241,7 @@ class AsyncResult(AsyncCommon): # type: () -> Optional[Any] """Return exactly one or no scalar result. - This is equvalent to calling :meth:`_asyncio.AsyncResult.scalars` and + This is equivalent to calling :meth:`_asyncio.AsyncResult.scalars` and then :meth:`_asyncio.AsyncResult.one_or_none`. .. seealso:: -- cgit v1.2.1