Skip to content

Commit 979523b

Browse files
committed
Fixed wrong references
1 parent 849db24 commit 979523b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

form/create_custom_field_type.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
How to Create a Custom Form Field Type
55
======================================
66

7-
Symfony comes with :doc:`tens of form types </reference/form/types>` (called
7+
Symfony comes with :doc:`tens of form types </reference/forms/types>` (called
88
"form fields" in other projects) ready to use in your applications. However,
99
it's common to create custom form types to solve specific purposes in your
1010
projects.
@@ -13,9 +13,9 @@ Creating Form Types Based on Symfony Built-in Types
1313
---------------------------------------------------
1414

1515
The easiest way to create a form type is to base it on one of the
16-
:doc:`existing form types </reference/form/types>`. Imagine that your project
16+
:doc:`existing form types </reference/forms/types>`. Imagine that your project
1717
displays a list of "shipping options" as a ``<select>`` HTML element. This can
18-
be implemented with a :doc:`ChoiceType </reference/form/types/choice>` where the
18+
be implemented with a :doc:`ChoiceType </reference/forms/types/choice>` where the
1919
``choices`` option is set to the list of available shipping options.
2020

2121
However, if you use the same form type in several forms, repeating the list of
@@ -102,7 +102,7 @@ Creating Form Types Created From Scratch
102102
----------------------------------------
103103

104104
Some form types are so specific to your projects that they cannot be based on
105-
any :doc:`existing form types </reference/form/types>` because they are too
105+
any :doc:`existing form types </reference/forms/types>` because they are too
106106
different. Consider an application that wants to reuse in different forms the
107107
following set of fields as the "postal address":
108108

0 commit comments

Comments
 (0)