Skip to content

removed extra "the" in text #1738

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

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions book/forms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1221,13 +1221,13 @@ rendered (e.g. ``label``, ``widget``, ``errors``, etc). By default, there
are 4 possible *parts* of a form that can be rendered:

+-------------+--------------------------+---------------------------------------------------------+
| ``label`` | (e.g. ``field_label``) | renders the field's label |
| ``label`` | (e.g. ``form_label``) | renders the field's label |
+-------------+--------------------------+---------------------------------------------------------+
| ``widget`` | (e.g. ``field_widget``) | renders the field's HTML representation |
| ``widget`` | (e.g. ``form_widget``) | renders the field's HTML representation |
+-------------+--------------------------+---------------------------------------------------------+
| ``errors`` | (e.g. ``field_errors``) | renders the field's errors |
| ``errors`` | (e.g. ``form_errors``) | renders the field's errors |
+-------------+--------------------------+---------------------------------------------------------+
| ``row`` | (e.g. ``field_row``) | renders the field's entire row (label, widget & errors) |
| ``row`` | (e.g. ``form_row``) | renders the field's entire row (label, widget & errors) |
+-------------+--------------------------+---------------------------------------------------------+

.. note::
Expand Down
2 changes: 1 addition & 1 deletion components/http_foundation/sessions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ the array::
$tokens['c'] = $value;
$session->set('tokens', $tokens);

With structured namespacing, the the key can be translated to the array
With structured namespacing, the key can be translated to the array
structure like this using a namespace character (defaults to `/`)::

$session->set('tokens/c', $value);
Expand Down