diff --git a/reference/forms/types/collection.rst b/reference/forms/types/collection.rst index b5036c7785f..b2c8d8ce1a3 100644 --- a/reference/forms/types/collection.rst +++ b/reference/forms/types/collection.rst @@ -289,11 +289,12 @@ type:: 'type' => 'choice', 'options' => array( 'choices' => array( - 'nashville' => 'Nashville', - 'paris' => 'Paris', - 'berlin' => 'Berlin', - 'london' => 'London', + 'Nashville' => 'nashville', + 'Paris' => 'paris', + 'Berlin' => 'berlin', + 'London' => 'london', ), + 'choices_as_values' => true, ), ));