Fix syntax errors in docs example

- Add missing comma in kwargs
- Remove spaces around keyword / parameter equals
- Replace incorrect curly brace with parenthesis
This commit is contained in:
James Beith 2016-01-24 13:33:18 +00:00
parent f2d6013134
commit 34901a5ffa

View File

@ -96,9 +96,9 @@ Two examples here are `'input_type'` and `'base_template'`:
# Use a radio input instead of a select input.
color_channel = serializers.ChoiceField(
choices=['red', 'green', 'blue']
style = {'base_template': 'radio.html'}
}
choices=['red', 'green', 'blue'],
style={'base_template': 'radio.html'}
)
For more details see the [HTML & Forms][html-and-forms] documentation.