From 0a3ba8c271bb4dc2ed7c45647d8e9504c7e8814f Mon Sep 17 00:00:00 2001 From: Mike Subelsky Date: Tue, 8 Apr 2014 16:30:41 -0700 Subject: [PATCH] minor documentation fix to README.md you can't call `simple_fields_for` on the Rails form builder --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9990cff3..8789a43f 100644 --- a/README.md +++ b/README.md @@ -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