From 960b438566ee42f34551a253604788bd44044408 Mon Sep 17 00:00:00 2001 From: "Andrew (Andrius) Marcinkevicius" Date: Mon, 19 Jan 2015 09:43:09 +0200 Subject: [PATCH] Remove horizontal scrollbar | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.3 | Fixed tickets | --- cookbook/form/use_empty_data.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cookbook/form/use_empty_data.rst b/cookbook/form/use_empty_data.rst index 423165267c0..7bbe95b633a 100644 --- a/cookbook/form/use_empty_data.rst +++ b/cookbook/form/use_empty_data.rst @@ -13,10 +13,12 @@ your form. For example:: { $blog = ...; - // $blog is passed in as the data, so the empty_data option is not needed + // $blog is passed in as the data, so the empty_data + // option is not needed $form = $this->createForm(new BlogType(), $blog); - // no data is passed in, so empty_data is used to get the "starting data" + // no data is passed in, so empty_data is + // used to get the "starting data" $form = $this->createForm(new BlogType()); }