Skip to content

Commit

Permalink
Fix <return> method doc for IsFeatureEnabled (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikechu-optimizely authored and NomanShoaib committed Mar 16, 2023
1 parent 394adfd commit 438f0d6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions OptimizelySDK/Optimizely.cs
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,10 @@ public Variation GetForcedVariation(string experimentKey, string userId)
/// <param name="featureKey">The feature key</param>
/// <param name="userId">The user ID</param>
/// <param name="userAttributes">The user's attributes.</param>
/// <returns>True if feature is enabled, false or null otherwise</returns>
public virtual bool IsFeatureEnabled(string featureKey, string userId, UserAttributes userAttributes = null)
/// <returns>True if feature is enabled, otherwise false</returns>
public virtual bool IsFeatureEnabled(string featureKey, string userId,
UserAttributes userAttributes = null
)
{
var config = ProjectConfigManager?.GetConfig();

Expand Down

0 comments on commit 438f0d6

Please sign in to comment.