From 25aab43f8e27e80e8f05498849c17e041791785b Mon Sep 17 00:00:00 2001 From: Dougal Matthews Date: Thu, 3 Dec 2015 09:51:24 +0000 Subject: [PATCH] Fixed a typo I think 'app' is the intended word here, but I am not 100% sure. --- docs/patterns/appfactories.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/patterns/appfactories.rst b/docs/patterns/appfactories.rst index 87b9d46f..bcac210c 100644 --- a/docs/patterns/appfactories.rst +++ b/docs/patterns/appfactories.rst @@ -7,7 +7,7 @@ If you are already using packages and blueprints for your application (:ref:`blueprints`) there are a couple of really nice ways to further improve the experience. A common pattern is creating the application object when the blueprint is imported. But if you move the creation of this object, -into a function, you can then create multiple instances of this and later. +into a function, you can then create multiple instances of this app later. So why would you want to do this?