]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix typo (#7747)
authorYuki Nishimine <51330969+petit87@users.noreply.github.com>
Wed, 23 Feb 2022 20:49:13 +0000 (05:49 +0900)
committerGitHub <noreply@github.com>
Wed, 23 Feb 2022 20:49:13 +0000 (21:49 +0100)
lib/sqlalchemy/engine/result.py

index 2e54c87dbd507e27f6b424a6cbbb38f2d29e2345..3ba1ae519c948b6e857af5ba6e12f407b1569fc7 100644 (file)
@@ -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.