From 6bb6c8cde527cd87d5c3fd7ee750dae1311731dd Mon Sep 17 00:00:00 2001 From: Christopher Bischoff Date: Tue, 3 Feb 2015 10:55:59 +0100 Subject: [PATCH] DOCS Fix formatting --- docs/en/02_Developer_Guides/03_Forms/00_Introduction.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/02_Developer_Guides/03_Forms/00_Introduction.md b/docs/en/02_Developer_Guides/03_Forms/00_Introduction.md index 9b039cf8e..df1730567 100644 --- a/docs/en/02_Developer_Guides/03_Forms/00_Introduction.md +++ b/docs/en/02_Developer_Guides/03_Forms/00_Introduction.md @@ -156,7 +156,7 @@ information on the CMS interface. Each [api:FormField] subclass has a number of methods you can call on it to customize its' behavior or HTML markup. The default `FormField` object has several methods for doing common operations. -
+
Most of the `set` operations will return the object back so methods can be chained.
@@ -238,14 +238,14 @@ with the particular button. In the previous example, clicking the 'Another Butto * The `Form` instance. * The `Controller` instance. -
+
If the `$action` method cannot be found on any of those or is marked as `private` or `protected`, an error will be thrown.
The `$action` method takes two arguments: - * `$data` an array containing the values of the form mapped from `$name` => '$value' + * `$data` an array containing the values of the form mapped from `$name => $value` * `$form` the submitted [api:Form] instance. :::php