[docs] Fix view name

This commit is contained in:
Lutz Ostkamp 2023-08-16 14:08:11 +00:00
parent b1385919be
commit 5689811063

View file

@ -282,7 +282,7 @@ Python shell. See :ref:`context-locals`.
print(url_for('index'))
print(url_for('login'))
print(url_for('login', next='/'))
print(url_for('profile', username='John Doe'))
print(url_for('user', username='John Doe'))
.. code-block:: text