@@ -1282,7 +1282,7 @@ and ``live_collection_button_delete`` block prefix respectively:
1282
1282
{{ block('button_widget') }}
1283
1283
{% endblock live_collection_button_add_widget %}
1284
1284
1285
- If you only want to customize some attributes maybe simpler to use the options in the form type:
1285
+ If you only want to customize some attributes, it maybe simpler to use the options in the form type:
1286
1286
1287
1287
// ...
1288
1288
->add('comments', LiveCollectionType::class, [
@@ -1301,12 +1301,12 @@ If you only want to customize some attributes maybe simpler to use the options i
1301
1301
// ...
1302
1302
1303
1303
If you want more control over how each row is rendered you can override the blocks
1304
- related to the ``LiveCollectionType ``. This works the same way as for ` the traditional
1305
- collection type `_, but you should use ``live_collection_* `` and `` live_collection_entry_ * ``
1306
- as prefixes instead.
1304
+ related to the ``LiveCollectionType ``. This works the same way as
1305
+ ` the traditional collection type `_, but you should use ``live_collection_* ``
1306
+ and `` live_collection_entry_* `` as prefixes instead.
1307
1307
1308
1308
For example, let's continue our previous example and customize the rendering of the blog post comments form.
1309
- By default the add comment button is placed after the comments, let 's move it before them.
1309
+ By default, the add comment button is placed after the comments. Let 's move it before them.
1310
1310
1311
1311
.. code-block :: twig
1312
1312
@@ -1339,7 +1339,7 @@ Now add a div around each row:
1339
1339
collection view variables and a ``button_delete `` is added to each
1340
1340
item view variables.
1341
1341
1342
- As an another example, now let's create a general bootstrap 5 theme for the live
1342
+ As another example, let's create a general bootstrap 5 theme for the live
1343
1343
collection type, rendering every item in a table row:
1344
1344
1345
1345
.. code-block :: twig
0 commit comments