Fix minor typo

OCD for the common good
This commit is contained in:
Kerem Bozdas 2018-12-11 22:56:21 +03:00 committed by GitHub
parent bd1fd283ca
commit 218a0b1f4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -524,7 +524,7 @@ Creates a collection of checkboxes with labels associated (same API as `collecti
```ruby
form_for @user do |f|
f.collection_check_boxes :options, [[true, 'Yes'] ,[false, 'No']], :first, :last
f.collection_check_boxes :options, [[true, 'Yes'], [false, 'No']], :first, :last
end
```