@@ -214,7 +214,7 @@ Field Options
214214allow_add
215215~~~~~~~~~
216216
217- **type **: ``Boolean `` **default **: ``false ``
217+ **type **: ``boolean `` **default **: ``false ``
218218
219219If set to ``true ``, then if unrecognized items are submitted to the collection,
220220they will be added as new items. The ending array will contain the existing
@@ -235,7 +235,7 @@ client side. For more information, see the above example and :ref:`cookbook-form
235235allow_delete
236236~~~~~~~~~~~~
237237
238- **type **: ``Boolean `` **default **: ``false ``
238+ **type **: ``boolean `` **default **: ``false ``
239239
240240If set to ``true ``, then if an existing item is not contained in the submitted
241241data, it will be correctly absent from the final array of items. This means
@@ -280,7 +280,7 @@ you'd need to at least pass the ``choices`` option to the underlying type::
280280prototype
281281~~~~~~~~~
282282
283- **type **: ``Boolean `` **default **: ``true ``
283+ **type **: ``boolean `` **default **: ``true ``
284284
285285This option is useful when using the `allow_add `_ option. If ``true `` (and
286286if `allow_add `_ is also ``true ``), a special "prototype" attribute will be
@@ -319,7 +319,7 @@ as :ref:`cookbook-form-collections-new-prototype`.
319319prototype_name
320320~~~~~~~~~~~~~~
321321
322- **type **: ``String `` **default **: ``__name__ ``
322+ **type **: ``string `` **default **: ``__name__ ``
323323
324324If you have several collections in your form, or worse, nested collections
325325you may want to change the placeholder so that unrelated placeholders are not
@@ -359,7 +359,7 @@ The default value is ``array()`` (empty array).
359359error_bubbling
360360~~~~~~~~~~~~~~
361361
362- **type **: ``Boolean `` **default **: ``true ``
362+ **type **: ``boolean `` **default **: ``true ``
363363
364364..include ::/reference/forms/types/options/_error_bubbling_body.rst.inc
365365
@@ -379,6 +379,6 @@ Field Variables
379379============ =========== ========================================
380380Variable Type Usage
381381============ =========== ========================================
382- allow_add ``Boolean `` The value of the `allow_add `_ option.
383- allow_delete ``Boolean `` The value of the `allow_delete `_ option.
382+ allow_add ``boolean `` The value of the `allow_add `_ option.
383+ allow_delete ``boolean `` The value of the `allow_delete `_ option.
384384============ =========== ========================================