From 202df42379b3e2c89d40591ea430753fb4f00c47 Mon Sep 17 00:00:00 2001 From: John Joseph Bachir Date: Wed, 11 Jul 2012 13:08:56 -0300 Subject: [PATCH] Fix haml/formtastic grammar in example --- README.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 946c68b..6218566 100644 --- a/README.markdown +++ b/README.markdown @@ -96,7 +96,7 @@ We will show the sample usage with the different possible form-builders. Inside our `projects/_form` partial we then write: ````haml -- f.inputs do += f.inputs do = f.input :name = f.input :description %h3 Tasks @@ -105,7 +105,7 @@ Inside our `projects/_form` partial we then write: = render 'task_fields', :f => task .links = link_to_add_association 'add task', f, :tasks - -f.actions do + = f.actions do = f.action :submit ````