From 40fbd1d326385e9550430d9ebd1f2e39dea7ea65 Mon Sep 17 00:00:00 2001 From: Jonathan <89750679+AHypnotoad@users.noreply.github.com> Date: Tue, 15 Mar 2022 13:59:41 -0500 Subject: [PATCH] Fix typo in the sqlite3 docs --- Lib/sqlite3/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/sqlite3/__init__.py b/Lib/sqlite3/__init__.py index 0dedf186b1a1eb..5a2dbd360fb49f 100644 --- a/Lib/sqlite3/__init__.py +++ b/Lib/sqlite3/__init__.py @@ -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: