summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYuki Nishimine <51330969+petit87@users.noreply.github.com>2022-02-24 05:49:13 +0900
committerGitHub <noreply@github.com>2022-02-23 21:49:13 +0100
commitbaa2220e44cc0254ed0302282a7205252f75a79c (patch)
tree63125b31ce1586a3363f22d865b95de0be39e6de /lib
parent19f13584b07b03a6ee775c197e0e8cda681e9d5a (diff)
downloadsqlalchemy-baa2220e44cc0254ed0302282a7205252f75a79c.tar.gz
fix typo (#7747)
Diffstat (limited to 'lib')
-rw-r--r--lib/sqlalchemy/engine/result.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/result.py b/lib/sqlalchemy/engine/result.py
index 2e54c87db..3ba1ae519 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.