Skip to content
This repository was archived by the owner on Sep 7, 2018. It is now read-only.

Commit 0bfa11e

Browse files
committed
Fix a wrong intersphinx link
1 parent 84b4c33 commit 0bfa11e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

langdev/web/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
#: The function that imports an object based on a string, provided by
7171
#: Werkzeug_.
7272
#:
73-
#: Flask --- :ref:`modular-applications-with-blueprints`
73+
#: Flask --- :ref:`flask:blueprints`
7474
#: Flask_ provides 'blueprint' facilities for large applications.
7575
#:
7676
#: .. _Werkzeug: http://werkzeug.pocoo.org/

langdev/web/forum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
#: Forum web pages blueprint.
1717
#:
18-
#: .. seealso:: Flask --- :ref:`modular-applications-with-blueprints`
18+
#: .. seealso:: Flask --- :ref:`flask:blueprints`
1919
forum = Blueprint('forum', __name__)
2020

2121

langdev/web/home.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#: Home blueprint.
99
#:
10-
#: .. seealso:: Flask --- :ref:`modular-applications-with-blueprints`
10+
#: .. seealso:: Flask --- :ref:`flask:blueprints`
1111
home = Blueprint('home', __name__)
1212

1313

langdev/web/thirdparty.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
#: Third-party application pages blueprint.
1717
#:
18-
#: .. seealso:: Flask --- :ref:`modular-applications-with-blueprints`
18+
#: .. seealso:: Flask --- :ref:`flask:blueprints`
1919
thirdparty = Blueprint('thirdparty', __name__)
2020

2121

langdev/web/user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#: User web pages blueprint.
2626
#:
27-
#: .. seealso:: Flask --- :ref:`modular-applications-with-blueprints`
27+
#: .. seealso:: Flask --- :ref:`flask:blueprints`
2828
user = Blueprint('user', __name__)
2929

3030

0 commit comments

Comments
 (0)