Skip to content

Commit a66c49a

Browse files
timhoviusweaverryan
authored andcommitted
Fixed typo in path
1 parent 82ba7db commit a66c49a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cookbook/form/create_custom_field_type.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,21 +167,21 @@ link for details), create a ``gender_widget`` block to handle this:
167167
# app/config/config.yml
168168
twig:
169169
form_themes:
170-
- 'form/fields.html.twig'
170+
- 'Form/fields.html.twig'
171171
172172
.. code-block:: xml
173173
174174
<!-- app/config/config.xml -->
175175
<twig:config>
176-
<twig:form-theme>form/fields.html.twig</twig:form-theme>
176+
<twig:form-theme>Form/fields.html.twig</twig:form-theme>
177177
</twig:config>
178178
179179
.. code-block:: php
180180
181181
// app/config/config.php
182182
$container->loadFromExtension('twig', array(
183183
'form_themes' => array(
184-
'form/fields.html.twig',
184+
'Form/fields.html.twig',
185185
),
186186
));
187187

0 commit comments

Comments
 (0)