summaryrefslogtreecommitdiff
path: root/Doc/includes
diff options
context:
space:
mode:
authordavy wybiral <davy.wybiral@gmail.com>2017-11-04 18:00:51 -0500
committerBerker Peksag <berker.peksag@gmail.com>2017-11-05 02:00:51 +0300
commitaafece7a9e010075fff4420cfbb16f1ec0342698 (patch)
treeab0c6a37cfc5c5d587f13e636f91982612d349ef /Doc/includes
parent12d60560ac8349595d8f44b5e1ec5ff86f3f0029 (diff)
downloadcpython-git-aafece7a9e010075fff4420cfbb16f1ec0342698.tar.gz
bpo-31923: Fix spelling in sqlite3 docs (GH-4227)
Diffstat (limited to 'Doc/includes')
-rw-r--r--Doc/includes/sqlite3/load_extension.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/sqlite3/load_extension.py b/Doc/includes/sqlite3/load_extension.py
index 015aa0de8c..b997c70668 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