Commit 27fda022 authored by Kamil Trzciński's avatar Kamil Trzciński

Merge branch 'ab/docs-ff-typo' into 'master'

Fix typo in feature flag docs

See merge request gitlab-org/gitlab!42707
parents a2f0f9fd ee1d1481
......@@ -52,10 +52,10 @@ invocations:
```ruby
# Check if feature flag is enabled
Feature.enabled?(:my_ops_flag, project, type: ops)
Feature.enabled?(:my_ops_flag, project, type: :ops)
# Check if feature flag is disabled
Feature.disabled?(:my_ops_flag, project, type: ops)
Feature.disabled?(:my_ops_flag, project, type: :ops)
# Push feature flag to Frontend
push_frontend_feature_flag(:my_ops_flag, project, type: :ops)
......
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