]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in sqlite3 documentation (GH-19965)
authorNaglis <naglis@users.noreply.github.com>
Wed, 6 May 2020 19:51:43 +0000 (19:51 +0000)
committerGitHub <noreply@github.com>
Wed, 6 May 2020 19:51:43 +0000 (16:51 -0300)
*first* is repeated twice.

Doc/library/sqlite3.rst

index 314d3a58e2759a85ba1bb3316e8e490f01cbfe23..ccb82278bdaa13368f30bc78ed6fce5efd483cc6 100644 (file)
@@ -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`.