From 3086c9509bf702839b5af7199c4f01359345a0eb Mon Sep 17 00:00:00 2001 From: Alexander Lazarov Date: Fri, 2 Jul 2021 11:06:51 +0300 Subject: [PATCH] Fix a typo in example code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ```