From fd8063da6dcc4e5b3aadee951408b148596debf0 Mon Sep 17 00:00:00 2001 From: Nicholas Bruning Date: Sat, 19 Apr 2014 19:03:37 +1000 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3165b49..39cc9fb 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,7 @@ Sometimes you'll need to store multiple values from your list, this couldn't be easier: ```ruby -enum :roles => [:basic, :manager, :administrator], :multiple => true +enum :roles, [:basic, :manager, :administrator], :multiple => true # ... @@ -149,7 +149,7 @@ complex validations, or you just want to throw caution to the wind, you can turn them off: ```ruby -enum :status => [:up, :down], :validate => false +enum :status, [:up, :down], :validate => false ``` # Issues and Feature Requests