diff --git a/reference/forms/types/choice.rst b/reference/forms/types/choice.rst index 9b2ef49971c..95c91e8442b 100644 --- a/reference/forms/types/choice.rst +++ b/reference/forms/types/choice.rst @@ -119,7 +119,7 @@ With this option you can also allow float values to be selected as data. // ... $builder->add('status', 'choice', array( - 'choice_list' => new ChoiceList(array(1, 0.5), array('Full', 'Half') + 'choice_list' => new ChoiceList(array(1, 0.5), array('Full', 'Half')) )); .. include:: /reference/forms/types/options/empty_value.rst.inc