From 0ef416112b06fb4f9bf4c191a85d0baee925693f Mon Sep 17 00:00:00 2001 From: Will Rossiter Date: Sat, 20 Aug 2011 05:10:03 +1200 Subject: [PATCH] MINOR: fixed syntax error in FormAction example. --- docs/en/tutorials/3-forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/tutorials/3-forms.md b/docs/en/tutorials/3-forms.md index 59da9fc12..de8e5b708 100644 --- a/docs/en/tutorials/3-forms.md +++ b/docs/en/tutorials/3-forms.md @@ -89,7 +89,7 @@ array mapping the values to the options listed in the dropdown. :::php $actions = new FieldSet( - new FormAction('doBrowserPoll', 'Submit'); + new FormAction('doBrowserPoll', 'Submit') );