Fix typos (#520)

This commit is contained in:
Kian Meng Ang
2021-11-17 16:38:58 +08:00
committed by GitHub
parent 8b920774f2
commit 6ebc1a1972
5 changed files with 7 additions and 7 deletions

View File

@ -375,7 +375,7 @@ class CursorStoreResultMixIn:
return result
def fetchall(self):
"""Fetchs all available rows from the cursor."""
"""Fetches all available rows from the cursor."""
self._check_executed()
if self.rownumber:
result = self._rows[self.rownumber :]
@ -437,7 +437,7 @@ class CursorUseResultMixIn:
return r
def fetchall(self):
"""Fetchs all available rows from the cursor."""
"""Fetches all available rows from the cursor."""
self._check_executed()
r = self._fetch_row(0)
self.rownumber = self.rownumber + len(r)