]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in the sqlite3 docs (GH-31915)
authorJonathan <jonathan.joyner94@gmail.com>
Mon, 28 Mar 2022 18:44:41 +0000 (13:44 -0500)
committerGitHub <noreply@github.com>
Mon, 28 Mar 2022 18:44:41 +0000 (11:44 -0700)
Co-authored-by: Jonathan <89750679+AHypnotoad@users.noreply.github.com>
Lib/sqlite3/__init__.py

index 0dedf186b1a1eb993623a90789f2d8c2ce0d1690..5a2dbd360fb49f5189206f811d36543e5782ee16 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: