]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in the sqlite3 docs (GH-31915) (GH-32158)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 29 Mar 2022 02:40:38 +0000 (19:40 -0700)
committerGitHub <noreply@github.com>
Tue, 29 Mar 2022 02:40:38 +0000 (19:40 -0700)
Co-authored-by: Jonathan <89750679+AHypnotoad@users.noreply.github.com>
(cherry picked from commit 66584c890d016e40d707400130d1cd98f2aedde9)

Co-authored-by: Jonathan <jonathan.joyner94@gmail.com>
Lib/sqlite3/__init__.py

index 1e717450c29bf5857ec4f6893b3c4e95292c2127..34a9c047dd607c6f30bcf020857e29482adcf584 100644 (file)
@@ -21,7 +21,7 @@
 # 3. This notice may not be removed or altered from any source distribution.
 
 """
-The sqlite3 extension module provides a DB-API 2.0 (PEP 249) compilant
+The sqlite3 extension module provides a DB-API 2.0 (PEP 249) compliant
 interface to the SQLite library, and requires SQLite 3.7.15 or newer.
 
 To use the module, start by creating a database Connection object: