https://github.com/python/cpython/commit/4376a2275967971a2f9586028347d6ed4ed6ef13 commit: 4376a2275967971a2f9586028347d6ed4ed6ef13 branch: 2.7 author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com> committer: Berker Peksag <berker.peksag at gmail.com> date: 2017年11月05日T02:11:25+03:00 summary: bpo-31923: Fix spelling in sqlite3 docs (GH-4227) (cherry picked from commit aafece7a9e010075fff4420cfbb16f1ec0342698) files: M Doc/includes/sqlite3/load_extension.py diff --git a/Doc/includes/sqlite3/load_extension.py b/Doc/includes/sqlite3/load_extension.py index 7f893c9286d..f1a92b3ef8c 100644 --- a/Doc/includes/sqlite3/load_extension.py +++ b/Doc/includes/sqlite3/load_extension.py @@ -11,7 +11,7 @@ # 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