Skip to content

Commit 8bae5d3

Browse files
committed
Fixing a few build errors
1 parent d6b1745 commit 8bae5d3

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

book/forms.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -970,7 +970,7 @@ form with many ``Product`` sub-forms). This is done by using the ``collection``
970970
field type.
971971

972972
For more information see the ":doc:`/cookbook/form/form_collections`" cookbook
973-
entry and the :ref:`collection</reference/forms/types/collection>` field type reference.
973+
entry and the :doc:`collection</reference/forms/types/collection>` field type reference.
974974

975975
.. index::
976976
single: Forms; Theming
@@ -1319,7 +1319,7 @@ The CSRF token can be customized on a form-by-form basis. For example::
13191319

13201320
To disable CSRF protection, set the ``csrf_protection`` option to false.
13211321
Customizations can also be made globally in your project. For more information,
1322-
see the :ref:`form configuration reference </reference-frameworkbundle-forms>`
1322+
see the :ref:`form configuration reference <reference-framework-form>`
13231323
section.
13241324

13251325
.. note::

components/dom_crawler.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ Using XPath expressions is really easy::
5555

5656
.. tip::
5757

58-
:phpmethod:`DOMXPath::query` is used internally to actually perform
59-
an XPath query.
58+
``DOMXPath::query`` is used internally to actually perform an XPath query.
6059

6160
Filtering is even easier if you have the ``CssSelector`` Component installed.
6261
This allows you to use jQuery-like selectors to traverse::
@@ -232,7 +231,7 @@ than just return the ``action`` attribute of the form. If the form method
232231
is GET, then it mimics the browsers behavior and returns a the ``action``
233232
attribute followed by a query string of all of the form's values.
234233

235-
You can virtually set and get values on the form
234+
You can virtually set and get values on the form::
236235

237236
// set values on the form internally
238237
$form->setValues(array(

reference/configuration/framework.rst

+2
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ services related to testing your application (e.g. ``test.client``) are loaded.
9090
This setting should be present in your ``test`` environment (usually via
9191
``app/config/config_test.yml``). For more information, see :doc:`/book/testing`.
9292

93+
.. _reference-framework-form:
94+
9395
form
9496
~~~~
9597

0 commit comments

Comments
 (0)