Commit 26ae1306 authored by Dallas Reedy's avatar Dallas Reedy

Remove extra ] from feature flag code example

parent 46695c58
...@@ -140,7 +140,7 @@ run the following in Slack: ...@@ -140,7 +140,7 @@ run the following in Slack:
This sets a feature flag to `true` based on the following formula: This sets a feature flag to `true` based on the following formula:
```ruby ```ruby
feature_flag_state = Zlib.crc32("some_feature<Actor>:#{actor.id}") % (100 * 1_000) < 25 * 1_000] feature_flag_state = Zlib.crc32("some_feature<Actor>:#{actor.id}") % (100 * 1_000) < 25 * 1_000
# where <Actor>: is a `User`, `Group`, `Project` and actor is an instance # where <Actor>: is a `User`, `Group`, `Project` and actor is an instance
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment