From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 4 Nov 2017 23:11:25 +0000 (-0700) Subject: bpo-31923: Fix spelling in sqlite3 docs (GH-4227) X-Git-Tag: v2.7.15rc1~139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4376a2275967971a2f9586028347d6ed4ed6ef13;p=python bpo-31923: Fix spelling in sqlite3 docs (GH-4227) (cherry picked from commit aafece7a9e010075fff4420cfbb16f1ec0342698) --- diff --git a/Doc/includes/sqlite3/load_extension.py b/Doc/includes/sqlite3/load_extension.py index 7f893c9286..f1a92b3ef8 100644 --- a/Doc/includes/sqlite3/load_extension.py +++ b/Doc/includes/sqlite3/load_extension.py @@ -11,7 +11,7 @@ con.execute("select load_extension('./fts3.so')") # alternatively you can load the extension using an API call: # con.load_extension("./fts3.so") -# disable extension laoding again +# disable extension loading again con.enable_load_extension(False) # example from SQLite wiki