From 233be14202f057f45b7166b711e71fc3c7afba1e Mon Sep 17 00:00:00 2001 From: tundrax Date: Fri, 10 Sep 2010 12:11:03 +0800 Subject: [PATCH] Fixed a mistake in collection check boxes section of README file. --- README.rdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rdoc b/README.rdoc index 3375ae34..e17f56d6 100644 --- a/README.rdoc +++ b/README.rdoc @@ -212,7 +212,7 @@ Creates a collection of radio inputs with labels associated (same API as collect Creates a collection of check boxes with labels associated (same API as collection_select): form_for @user do |f| - f.collection_check_box :options, [[true, 'Yes'] ,[false, 'No']], :first, :last + f.collection_check_boxes :options, [[true, 'Yes'] ,[false, 'No']], :first, :last end