From 8efb47dfa1f2e933bbfb2dd6eeb080999765fa87 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Sun, 2 Jan 2022 19:59:02 +0100 Subject: [PATCH] Fix typo in comment --- psycopg/psycopg/cursor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psycopg/psycopg/cursor.py b/psycopg/psycopg/cursor.py index ee3559510..5833122db 100644 --- a/psycopg/psycopg/cursor.py +++ b/psycopg/psycopg/cursor.py @@ -228,7 +228,7 @@ class BaseCursor(Generic[ConnectionType, Row]): if self._results: self._set_result(0) - # Override rowcout for the first result. Calls to nextset() will change + # Override rowcount for the first result. Calls to nextset() will change # it to the value of that result only, but we hope nobody will notice. # You haven't read this comment. self._rowcount = nrows -- 2.47.3