From fd2e32d38336c027e634c9061fd00eaf92aea255 Mon Sep 17 00:00:00 2001 From: David Gilman Date: Sun, 9 Jul 2023 20:05:17 -0400 Subject: [PATCH] Fix some typos in docs --- docs/index.rst | 2 +- gspread_asyncio/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index b05b478..a7a48e1 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -41,7 +41,7 @@ AsyncioGspreadWorksheet Cell ---- -See :class:`gspread.models.Cell`. +See :class:`gspread.cell.Cell`. Indices and tables ================== diff --git a/gspread_asyncio/__init__.py b/gspread_asyncio/__init__.py index 6e202e2..2257459 100644 --- a/gspread_asyncio/__init__.py +++ b/gspread_asyncio/__init__.py @@ -1108,7 +1108,7 @@ async def worksheets(self) -> "List[AsyncioGspreadWorksheet]": class AsyncioGspreadWorksheet(object): """An :mod:`asyncio` wrapper for :class:`gspread.Worksheet`. You **must** obtain instances of this class from - :meth:`AsynctioGspreadSpreadsheet.add_worksheet`, + :meth:`AsyncioGspreadSpreadsheet.add_worksheet`, :meth:`AsyncioGspreadSpreadsheet.get_worksheet`, :meth:`AsyncioGspreadSpreadsheet.worksheet`, or :meth:`AsyncioGspreadSpreadsheet.worksheets`.