浏览代码

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:
 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
 .. code-block:: php