Skip to content

Consistent bullet point endings #12210

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 21, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions forms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ possible paths:

#. When initially loading the page in a browser, the form hasn't been submitted
yet and ``$form->isSubmitted()`` returns ``false``. So, the form is created
and rendered.
and rendered;

#. When the user submits the form, :method:`Symfony\\Component\\Form\\FormInterface::handleRequest`
recognizes this and immediately writes the submitted data back into the
Expand All @@ -413,7 +413,7 @@ possible paths:
written into the form, but this time :method:`Symfony\\Component\\Form\\FormInterface::isValid`
returns ``true``. Now you have the opportunity to perform some actions using
the ``$task`` object (e.g. persisting it to the database) before redirecting
the user to some other page (e.g. a "thank you" or "success" page).
the user to some other page (e.g. a "thank you" or "success" page);

.. note::

Expand Down