diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-11-04 23:11:01 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-11-04 23:11:01 (GMT) |
commit | 5c0100aec014b9e0a66884468cbfa3ac01e4bfbb (patch) | |
tree | b55abacdaa372ae5914a29d313126bb57d5b39fe | |
parent | f9387469e82eccb6e0471037033f921be7f59909 (diff) | |
download | cpython-5c0100aec014b9e0a66884468cbfa3ac01e4bfbb.zip cpython-5c0100aec014b9e0a66884468cbfa3ac01e4bfbb.tar.gz cpython-5c0100aec014b9e0a66884468cbfa3ac01e4bfbb.tar.bz2 |
bpo-31923: Fix spelling in sqlite3 docs (GH-4227)
(cherry picked from commit aafece7a9e010075fff4420cfbb16f1ec0342698)
-rw-r--r-- | Doc/includes/sqlite3/load_extension.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/sqlite3/load_extension.py b/Doc/includes/sqlite3/load_extension.py index 015aa0d..b997c70 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 |