From 4b95f7de1d302de80628291bab554cb4681ee4a2 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 24 Jul 2017 13:10:28 +0200 Subject: [PATCH] Minor reword in the article about creating custom form types --- form/create_custom_field_type.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/form/create_custom_field_type.rst b/form/create_custom_field_type.rst index ff7e3cbdaaf..cc70c0464d8 100644 --- a/form/create_custom_field_type.rst +++ b/form/create_custom_field_type.rst @@ -6,10 +6,9 @@ How to Create a Custom Form Field Type Symfony comes with a bunch of core field types available for building forms. However there are situations where you may want to create a custom form field -type for a specific purpose. This recipe assumes you need a field definition +type for a specific purpose. This article assumes you need a field definition that holds a shipping option, based on the existing choice field. This section -explains how the field is defined, how you can customize its layout and finally, -how you can register it for use in your application. +explains how the field is defined and how you can customize its layout. Defining the Field Type -----------------------