@@ -339,9 +339,9 @@ open class OptimizelyClient: NSObject {
339339 /// Set forced variation for experiment and user ID to variationKey.
340340 ///
341341 /// - Parameters:
342- /// - experimentKey The key for the experiment.
343- /// - userId The user ID to be used for bucketing.
344- /// - variationKey The variation the user should be forced into.
342+ /// - experimentKey: The key for the experiment.
343+ /// - userId: The user ID to be used for bucketing.
344+ /// - variationKey: The variation the user should be forced into.
345345 /// This value can be nil, in which case, the forced variation is cleared.
346346 /// - Returns: true if forced variation set successfully
347347 public func setForcedVariation( experimentKey: String ,
@@ -358,9 +358,9 @@ open class OptimizelyClient: NSObject {
358358 /// Determine whether a feature is enabled.
359359 ///
360360 /// - Parameters:
361- /// - featureKey The key for the feature flag.
362- /// - userId The user ID to be used for bucketing.
363- /// - attributes The user's attributes.
361+ /// - featureKey: The key for the feature flag.
362+ /// - userId: The user ID to be used for bucketing.
363+ /// - attributes: The user's attributes.
364364 /// - Returns: true if feature is enabled, false otherwise.
365365 /// - Throws: `OptimizelyError` if feature parameter is not valid
366366 public func isFeatureEnabled( featureKey: String ,
@@ -425,10 +425,10 @@ open class OptimizelyClient: NSObject {
425425 /// Gets boolean feature variable value.
426426 ///
427427 /// - Parameters:
428- /// - featureKey The key for the feature flag.
429- /// - variableKey The key for the variable.
430- /// - userId The user ID to be used for bucketing.
431- /// - attributes The user's attributes.
428+ /// - featureKey: The key for the feature flag.
429+ /// - variableKey: The key for the variable.
430+ /// - userId: The user ID to be used for bucketing.
431+ /// - attributes: The user's attributes.
432432 /// - Returns: feature variable value of type boolean.
433433 /// - Throws: `OptimizelyError` if feature parameter is not valid
434434 public func getFeatureVariableBoolean( featureKey: String ,
@@ -445,10 +445,10 @@ open class OptimizelyClient: NSObject {
445445 /// Gets double feature variable value.
446446 ///
447447 /// - Parameters:
448- /// - featureKey The key for the feature flag.
449- /// - variableKey The key for the variable.
450- /// - userId The user ID to be used for bucketing.
451- /// - attributes The user's attributes.
448+ /// - featureKey: The key for the feature flag.
449+ /// - variableKey: The key for the variable.
450+ /// - userId: The user ID to be used for bucketing.
451+ /// - attributes: The user's attributes.
452452 /// - Returns: feature variable value of type double.
453453 /// - Throws: `OptimizelyError` if feature parameter is not valid
454454 public func getFeatureVariableDouble( featureKey: String ,
@@ -465,10 +465,10 @@ open class OptimizelyClient: NSObject {
465465 /// Gets integer feature variable value.
466466 ///
467467 /// - Parameters:
468- /// - featureKey The key for the feature flag.
469- /// - variableKey The key for the variable.
470- /// - userId The user ID to be used for bucketing.
471- /// - attributes The user's attributes.
468+ /// - featureKey: The key for the feature flag.
469+ /// - variableKey: The key for the variable.
470+ /// - userId: The user ID to be used for bucketing.
471+ /// - attributes: The user's attributes.
472472 /// - Returns: feature variable value of type integer.
473473 /// - Throws: `OptimizelyError` if feature parameter is not valid
474474 public func getFeatureVariableInteger( featureKey: String ,
@@ -485,10 +485,10 @@ open class OptimizelyClient: NSObject {
485485 /// Gets string feature variable value.
486486 ///
487487 /// - Parameters:
488- /// - featureKey The key for the feature flag.
489- /// - variableKey The key for the variable.
490- /// - userId The user ID to be used for bucketing.
491- /// - attributes The user's attributes.
488+ /// - featureKey: The key for the feature flag.
489+ /// - variableKey: The key for the variable.
490+ /// - userId: The user ID to be used for bucketing.
491+ /// - attributes: The user's attributes.
492492 /// - Returns: feature variable value of type string.
493493 /// - Throws: `OptimizelyError` if feature parameter is not valid
494494 public func getFeatureVariableString( featureKey: String ,
0 commit comments