diff options
author | Naglis <naglis@users.noreply.github.com> | 2020-05-06 19:51:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 19:51:43 (GMT) |
commit | 441416c9a06f11f28e17d56c915ea6116c0c9ea7 (patch) | |
tree | 0841b8b6a410864da54ee599c6353a0f8181fd8b | |
parent | 999ec9ab6af536cc2666a0847ec02331aaf00416 (diff) | |
download | cpython-441416c9a06f11f28e17d56c915ea6116c0c9ea7.zip cpython-441416c9a06f11f28e17d56c915ea6116c0c9ea7.tar.gz cpython-441416c9a06f11f28e17d56c915ea6116c0c9ea7.tar.bz2 |
Fix typo in sqlite3 documentation (GH-19965)
*first* is repeated twice.
-rw-r--r-- | Doc/library/sqlite3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 314d3a5..ccb8227 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -928,7 +928,7 @@ a class like this:: self.x, self.y = x, y Now you want to store the point in a single SQLite column. First you'll have to -choose one of the supported types first to be used for representing the point. +choose one of the supported types to be used for representing the point. Let's just use str and separate the coordinates using a semicolon. Then you need to give your class a method ``__conform__(self, protocol)`` which must return the converted value. The parameter *protocol* will be :class:`PrepareProtocol`. |