Skip to content

Commit e6d7d8f

Browse files
committed
bug #4315 Update choice.rst (odolbeau)
This PR was submitted for the master branch but it was merged into the 2.3 branch instead (closes #4315). Discussion ---------- Update choice.rst Add missing parenthesis Commits ------- d014607 Update choice.rst
2 parents 090afab + d014607 commit e6d7d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/forms/types/choice.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ With this option you can also allow float values to be selected as data.
119119
120120
// ...
121121
$builder->add('status', 'choice', array(
122-
'choice_list' => new ChoiceList(array(1, 0.5), array('Full', 'Half')
122+
'choice_list' => new ChoiceList(array(1, 0.5), array('Full', 'Half'))
123123
));
124124
125125
.. include:: /reference/forms/types/options/empty_value.rst.inc

0 commit comments

Comments
 (0)