From: Yuki Nishimine <51330969+petit87@users.noreply.github.com> Date: Wed, 23 Feb 2022 20:49:13 +0000 (+0900) Subject: fix typo (#7747) X-Git-Tag: rel_2_0_0b1~471 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=baa2220e44cc0254ed0302282a7205252f75a79c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typo (#7747) --- diff --git a/lib/sqlalchemy/engine/result.py b/lib/sqlalchemy/engine/result.py index 2e54c87dbd..3ba1ae519c 100644 --- a/lib/sqlalchemy/engine/result.py +++ b/lib/sqlalchemy/engine/result.py @@ -756,7 +756,7 @@ class Result(_WithKeys, ResultInternal): :meth:`_engine.Result.fetchone` that return one row at a time. Data from the underlying cursor or other data source will be buffered up to this many rows in memory, and the buffered collection will then be - yielded out one row at at time or as many rows are requested. Each time + yielded out one row at a time or as many rows are requested. Each time the buffer clears, it will be refreshed to this many rows or as many rows remain if fewer remain.