File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Example Usage
2727
2828Before using this field, you'll need to have some PHP enumeration (or "enum" for
2929short) defined somewhere in your application. This enum has to be of type
30- "backed enum", where each keyword defines a scalar value such a string::
30+ "backed enum", where each keyword defines a scalar value such as a string::
3131
3232 // src/Config/TextAlign.php
3333 namespace App\Config;
@@ -49,8 +49,8 @@ Instead of using the values of the enumeration in a ``choices`` option, the
4949 $builder->add('alignment', EnumType::class, ['class' => TextAlign::class]);
5050
5151This will display a ``<select> `` tag with the three possible values defined in
52- the ``TextAlign `` enum. Use the `` expanded `` and `` multiple `` options to display
53- these values as ``<input type="checkbox"> `` and ``<input type="radio"> ``.
52+ the ``TextAlign `` enum. Use the `expanded `_ and `multiple `_ options to display
53+ these values as ``<input type="checkbox"> `` or ``<input type="radio"> ``.
5454
5555Field Options
5656-------------
You can’t perform that action at this time.
0 commit comments