From 5ecca4c0dae52c7645f9dbda6cbfc32ec76a3498 Mon Sep 17 00:00:00 2001 From: Hyunjun Kim Date: Wed, 2 Oct 2013 15:10:27 +0900 Subject: [PATCH] Fix a typo on blueprints module name. --- flask/blueprints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/blueprints.py b/flask/blueprints.py index d45fd062..2c32502b 100644 --- a/flask/blueprints.py +++ b/flask/blueprints.py @@ -79,7 +79,7 @@ class BlueprintSetupState(object): class Blueprint(_PackageBoundObject): """Represents a blueprint. A blueprint is an object that records functions that will be called with the - :class:`~flask.blueprint.BlueprintSetupState` later to register functions + :class:`~flask.blueprints.BlueprintSetupState` later to register functions or other things on the main application. See :ref:`blueprints` for more information.