We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8df599e commit f2928b1Copy full SHA for f2928b1
1 file changed
README.md
@@ -70,7 +70,6 @@ gem install openfeature-sdk
70
71
```ruby
72
require 'open_feature/sdk'
73
-require 'json' # For JSON.dump
74
75
# API Initialization and configuration
76
@@ -91,7 +90,7 @@ client = OpenFeature::SDK.build_client
91
90
bool_value = client.fetch_boolean_value(flag_key: 'boolean_flag', default_value: false)
92
93
# a details method is also available for more information about the flag evaluation
94
-# see `ResolutionDetails` for more info
+# see `EvaluationDetails` for more info
95
bool_details = client.fetch_boolean_details(flag_key: 'boolean_flag', default_value: false)
96
97
# fetching string value feature flag
0 commit comments