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()); }