From 218a0b1f4e3c490c21bdd68e928a1ddbfd0be1b5 Mon Sep 17 00:00:00 2001 From: Kerem Bozdas Date: Tue, 11 Dec 2018 22:56:21 +0300 Subject: [PATCH] Fix minor typo OCD for the common good --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0404d3c2..fac4f989 100644 --- a/README.md +++ b/README.md @@ -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 ```