[Python-checkins] Fix typo in sqlite3 documentation (GH-19965)

Naglis webhook-mailer at python.org
Wed May 6 15:51:52 EDT 2020


https://github.com/python/cpython/commit/441416c9a06f11f28e17d56c915ea6116c0c9ea7
commit: 441416c9a06f11f28e17d56c915ea6116c0c9ea7
branch: master
author: Naglis <naglis at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-05-06T16:51:43-03:00
summary:

Fix typo in sqlite3 documentation (GH-19965)

*first* is repeated twice.

files:
M Doc/library/sqlite3.rst

diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 314d3a58e2759..ccb82278bdaa1 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`.



More information about the Python-checkins mailing list