minor documentation fix to README.md

you can't call `simple_fields_for` on the Rails form builder
This commit is contained in:
Mike Subelsky 2014-04-08 16:30:41 -07:00
parent 9158043eab
commit 0a3ba8c271
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ Rails helper, but change the builder to use the `SimpleForm::FormBuilder`.
```ruby
form_for @user do |f|
f.simple_fields_for :posts do |posts_form|
simple_fields_for :posts do |posts_form|
# Here you have all simple_form methods available
posts_form.input :title
end