Skip to content

Commit 8ee01ad

Browse files
author
Alex Couper
committed
Put the link to Flask class docs at the end.
1 parent cc8a85d commit 8ee01ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/quickstart.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ So what did that code do?
4343
the application's module or package. If you are using a single module (as
4444
in this example), you should use `__name__` because depending on if it's
4545
started as application or imported as module the name will be different
46-
(``'__main__'`` versus the actual import name). For more information, have
47-
a look at the :class:`~flask.Flask` documentation. This is needed so that
48-
Flask knows where to look for templates, static files, and so on.
46+
(``'__main__'`` versus the actual import name). This is needed so that
47+
Flask knows where to look for templates, static files, and so on. For more
48+
information, have a look at the :class:`~flask.Flask` documentation.
4949
3. We then use the :meth:`~flask.Flask.route` decorator to tell Flask what URL
5050
should trigger our function.
5151
4. The function is given a name which is also used to generate URLs for that

0 commit comments

Comments
 (0)