Fix typos found while completing the Flask tutorial

This commit is contained in:
Jesse Seldess 2018-12-14 11:59:16 -05:00 committed by David Lord
parent 215bbf21b5
commit 0c011a4c15
2 changed files with 2 additions and 2 deletions

View file

@ -314,7 +314,7 @@ Delete
The delete view doesn't have its own template, the delete button is part
of ``update.html`` and posts to the ``/<id>/delete`` URL. Since there
is no template, it will only handle the ``POST`` method then redirect
is no template, it will only handle the ``POST`` method and then redirect
to the ``index`` view.
.. code-block:: python