Skip to content

Commit 1c9381d

Browse files
authored
Fix return types on CHANGELOG. (#291)
1 parent 1af5f7c commit 1c9381d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ To learn more about Feature Management, read our [knowledge base article introdu
4646
* @param attributes The user's attributes.
4747
* @return feature variable value.
4848
*/
49-
- (BOOL)getFeatureVariableBoolean:(nullable NSString *)featureKey
49+
- (NSNumber *)getFeatureVariableBoolean:(nullable NSString *)featureKey
5050
variableKey:(nullable NSString *)variableKey
5151
userId:(nullable NSString *)userId
5252
attributes:(nullable NSDictionary<NSString *, NSString *> *)attributes;
53-
- (double)getFeatureVariableDouble:(nullable NSString *)featureKey
53+
- (NSNumber *)getFeatureVariableDouble:(nullable NSString *)featureKey
5454
variableKey:(nullable NSString *)variableKey
5555
userId:(nullable NSString *)userId
5656
attributes:(nullable NSDictionary<NSString *, NSString *> *)attributes;
57-
- (int)getFeatureVariableInteger:(nullable NSString *)featureKey
57+
- (NSNumber *)getFeatureVariableInteger:(nullable NSString *)featureKey
5858
variableKey:(nullable NSString *)variableKey
5959
userId:(nullable NSString *)userId
6060
attributes:(nullable NSDictionary<NSString *, NSString *> *)attributes;

0 commit comments

Comments
 (0)