8000 minor #11201 add missing brackets (OskarStark) · symfony/symfony-docs@b6a1e73 · GitHub
[go: up one dir, main page]

Skip to content < 8000 div data-target="react-partial.reactRoot">

Commit b6a1e73

Browse files
committed
minor #11201 add missing brackets (OskarStark)
This PR was merged into the 4.2 branch. Discussion ---------- add missing brackets <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 7be1bcb add missing brackets
2 parents 7374c0f + 7be1bcb commit b6a1e73

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

form/form_customization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ Variable Usage
384384
``block_prefixes`` An array of all the names of the parent types.
385385
``cache_key`` A unique key which is used for caching.
386386
``compound`` Whether or not a field is actually a holder for a group of children fields
387-
(for example, a ``choice`` field, which is actually a group of checkboxes.
387+
(for example, a ``choice`` field, which is actually a group of checkboxes).
388388
``data`` The normalized data of the type.
389389
``disabled`` If ``true``, ``disabled="disabled"`` is added to the field.
390390
``errors`` An array of any errors attached to *this* specific field (e.g. ``form.title.errors``).

quick_tour/flex_recipes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ Thanks to Flex, after one command, you can start using Twig immediately:
9595
+ 'name' => $name,
9696
+ ]);
9797
}
98+
}
9899
99100
By extending ``AbstractController``, you now have access to a number of shortcut
100101
methods and tools, like ``render()``. Create the new template:

security/access_control.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Take the following ``access_control`` entries as an example:
8282
'role' => 'ROLE_USER_PORT',
8383
'ip' => '127.0.0.1',
8484
'port' => '8080',
85-
),
85+
],
8686
[
8787
'path' => '^/admin',
8888
'role' => 'ROLE_USER_HOST',

0 commit comments

Comments
 (0)
0