@@ -373,7 +373,7 @@ async def copy_from_table(self, table_name, *, output,
373
373
:param float timeout:
374
374
Optional timeout value in seconds.
375
375
376
- The remaining kewyword arguments are ``COPY`` statement options,
376
+ The remaining keyword arguments are ``COPY`` statement options,
377
377
see `COPY statement documentation`_ for details.
378
378
379
379
:return: The status string of the COPY command.
@@ -441,7 +441,7 @@ async def copy_from_query(self, query, *args, output,
441
441
:param float timeout:
442
442
Optional timeout value in seconds.
443
443
444
- The remaining kewyword arguments are ``COPY`` statement options,
444
+ The remaining keyword arguments are ``COPY`` statement options,
445
445
see `COPY statement documentation`_ for details.
446
446
447
447
:return: The status string of the COPY command.
@@ -508,7 +508,7 @@ async def copy_to_table(self, table_name, *, source,
508
508
:param float timeout:
509
509
Optional timeout value in seconds.
510
510
511
- The remaining kewyword arguments are ``COPY`` statement options,
511
+ The remaining keyword arguments are ``COPY`` statement options,
512
512
see `COPY statement documentation`_ for details.
513
513
514
514
:return: The status string of the COPY command.
@@ -857,10 +857,10 @@ def _mark_stmts_as_closed(self):
857
857
def _maybe_gc_stmt (self , stmt ):
858
858
if stmt .refs == 0 and not self ._stmt_cache .has (stmt .query ):
859
859
# If low-level `stmt` isn't referenced from any high-level
860
- # `PreparedStatament ` object and is not in the `_stmt_cache`:
860
+ # `PreparedStatement ` object and is not in the `_stmt_cache`:
861
861
#
862
862
# * mark it as closed, which will make it non-usable
863
- # for any `PreparedStatament ` or for methods like
863
+ # for any `PreparedStatement ` or for methods like
864
864
# `Connection.fetch()`.
865
865
#
866
866
# * schedule it to be formally closed on the server.
0 commit comments