From 8c979698bd9942a525dbb0e1ef4a31269a0b04cb Mon Sep 17 00:00:00 2001 From: venus Date: Sat, 12 Jan 2019 14:51:04 +0800 Subject: [PATCH] fix the typo --- docs/extensiondev.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extensiondev.rst b/docs/extensiondev.rst index f48fb46b..aa4eff76 100644 --- a/docs/extensiondev.rst +++ b/docs/extensiondev.rst @@ -240,7 +240,7 @@ automatically. Additionally, the ``init_app`` method is used to support the factory pattern for creating apps:: - db = Sqlite3() + db = SQLite3() # Then later on. app = create_app('the-config.cfg') db.init_app(app)