Skip to content

Commit

Permalink
Moves comment out of summary
Browse files Browse the repository at this point in the history
  • Loading branch information
rossgrambo committed Sep 25, 2024
1 parent 8be45cd commit ea8fea1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ public class FeatureTagHelper : TagHelper
public string Variant { get; set; }

/// <summary>
/// Creates a feature tag helper. Takes both a feature manager and a variant feature manager for backwards compatibility.
/// Creates a feature tag helper.
/// </summary>
/// <param name="featureManager">The feature manager snapshot to use to evaluate feature state.</param>
/// <param name="variantFeatureManager">The variant feature manager snapshot to use to evaluate feature state.</param>
public FeatureTagHelper(IFeatureManagerSnapshot featureManager, IVariantFeatureManagerSnapshot variantFeatureManager)
{
// Takes both a feature manager and a variant feature manager for backwards compatibility.
_featureManager = featureManager ?? throw new ArgumentNullException(nameof(featureManager));
_variantFeatureManager = variantFeatureManager ?? throw new ArgumentNullException(nameof(variantFeatureManager));
}
Expand Down

0 comments on commit ea8fea1

Please sign in to comment.