Skip to content

Commit d575de5

Browse files
greylipgjones
authored andcommitted
Fix typo in the example of nesting bp docs
1 parent 22d82e7 commit d575de5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/blueprints.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ It is possible to register a blueprint on another blueprint.
127127

128128
.. code-block:: python
129129
130-
parent = Blueprint("parent", __name__, url_prefix="/parent")
131-
child = Blueprint("child", __name__, url_prefix="/child)
130+
parent = Blueprint('parent', __name__, url_prefix='/parent')
131+
child = Blueprint('child', __name__, url_prefix='/child')
132132
parent.register_blueprint(child)
133133
app.register_blueprint(parent)
134134

0 commit comments

Comments
 (0)