diff --git a/src/Microsoft.FeatureManagement.AspNetCore/FeatureGateAttribute.cs b/src/Microsoft.FeatureManagement.AspNetCore/FeatureGateAttribute.cs index c2573b8c..fb15e5b1 100644 --- a/src/Microsoft.FeatureManagement.AspNetCore/FeatureGateAttribute.cs +++ b/src/Microsoft.FeatureManagement.AspNetCore/FeatureGateAttribute.cs @@ -90,12 +90,12 @@ public FeatureGateAttribute(RequirementType requirementType, params object[] fea public IEnumerable Features { get; } /// - /// Controls whether any or all features in should be enabled to pass. + /// Controls whether any or all features in should be enabled to pass. /// public RequirementType RequirementType { get; } /// - /// Performs controller action pre-procesing to ensure that at least one of the specified features are enabled. + /// Performs controller action pre-procesing to ensure that any or all of the specified features are enabled. /// /// The context of the MVC action. /// The action delegate.