From 8f8319021cc1e550fb8d6f48a1c06f237a24c78e Mon Sep 17 00:00:00 2001 From: Nick Busey Date: Wed, 7 Sep 2016 11:59:51 -0600 Subject: [PATCH] Removing redundant doc section The code block after the next was identical to this code block, could be confusing. Not sure this is the best improvement, but it's certainly better than having the same code twice. --- en/views/helpers/form.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/en/views/helpers/form.rst b/en/views/helpers/form.rst index 30fe1b31db..4b85696f5e 100644 --- a/en/views/helpers/form.rst +++ b/en/views/helpers/form.rst @@ -1696,7 +1696,8 @@ Generates a set of inputs for the given context wrapped in a fieldset. You can specify the generated fields by including them:: echo $this->Form->inputs([ - 'name' => ['label' => 'custom label'] + 'name', + 'email ]); You can customize the legend text using an option::