From f45ceec31f6b957fd5ab9db75a5a727a8f73289b Mon Sep 17 00:00:00 2001 From: cktan98 Date: Wed, 25 Jul 2018 01:57:30 +0800 Subject: [PATCH] Fix grammatical error --- docs/tutorial/views.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/views.rst b/docs/tutorial/views.rst index c9c6a7ca..86689111 100644 --- a/docs/tutorial/views.rst +++ b/docs/tutorial/views.rst @@ -157,7 +157,7 @@ Here's what the ``register`` view function is doing: stores messages that can be retrieved when rendering the template. #. When the user initially navigates to ``auth/register``, or - there was an validation error, an HTML page with the registration + there was a validation error, an HTML page with the registration form should be shown. :func:`render_template` will render a template containing the HTML, which you'll write in the next step of the tutorial.