From 5b7fd5752d6ba9cb9d4432321d11ab4f08b5787b Mon Sep 17 00:00:00 2001 From: Naglis Jonaitis Date: Wed, 6 May 2020 21:29:33 +0300 Subject: [PATCH] Fix typo in sqlite3 documentation *first* is repeated twice. --- Doc/library/sqlite3.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 314d3a58e2759a..ccb82278bdaa13 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`.