Skip to content

Commit 441416c

Browse files
authored
Fix typo in sqlite3 documentation (GH-19965)
*first* is repeated twice.
1 parent 999ec9a commit 441416c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/sqlite3.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ a class like this::
928928
self.x, self.y = x, y
929929

930930
Now you want to store the point in a single SQLite column. First you'll have to
931-
choose one of the supported types first to be used for representing the point.
931+
choose one of the supported types to be used for representing the point.
932932
Let's just use str and separate the coordinates using a semicolon. Then you need
933933
to give your class a method ``__conform__(self, protocol)`` which must return
934934
the converted value. The parameter *protocol* will be :class:`PrepareProtocol`.

0 commit comments

Comments
 (0)