diff --git a/README.md b/README.md index 3f2aa2e..55d7b72 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ A state is just a name and a boolean check. The check needs to evaluate to ```ruby FeatureFlipper.states do state :development, ['development', 'test'].include?(Rails.env) - state :staging, ['staging', development', 'test'].include?(Rails.env) + state :staging, ['staging', 'development', 'test'].include?(Rails.env) end ```