Преглед на файлове

improved documentation's wording

Quentin Pleplé преди 14 години
родител
ревизия
56b443a3aa
променени са 1 файла, в които са добавени 4 реда и са изтрити 6 реда
  1. 4 6
      Resources/doc/reference/form_field_definition.rst

+ 4 - 6
Resources/doc/reference/form_field_definition.rst

@@ -112,13 +112,11 @@ display a ``User`` field.
 
 The AdminBundle provides 3 edit options:
 
- - ``standard``: default value, the user list is set in a select widget
- - ``list``: the user list is set in a model where you can search and select a user
+ - ``standard``: default value, the ``User`` list is set in a select widget
+ - ``list``: the ``User`` list is set in a model where you can search and select a user
+ - ``inline``: embed the ``User`` form into the ``Post`` form, great for one-to-one, or if your want to allow the user to edit the ``User`` information.
 
-In both case, you can create a new ``User`` by clicking on the "+" icon.
-
-The last option, is ``inline`` this option embed the ``User`` form into the ``Post`` Form. This option is
-great for one-to-one, or if your want to allow the user to edit the ``User`` information.
+With the ``standard`` and ``list`` options, you can create a new ``User`` by clicking on the "+" icon.
 
 .. code-block:: php