-
Notifications
You must be signed in to change notification settings - Fork 70
Closed
Labels
needs-triageIndicates that an issue needs to be categorized.Indicates that an issue needs to be categorized.
Description
Small bug introduced in PR #362:
ResideInNamespace should be ResideInNamespaceMatching in class GivenTypesThat and method ResideInNamespaceMatching
Current
public TGivenRuleTypeConjunction ResideInNamespaceMatching(string pattern)
{
_ruleCreator.AddPredicate(
TypePredicatesDefinition<TRuleType>.ResideInNamespace(pattern)
);
return Create<TGivenRuleTypeConjunction, TRuleType>(_ruleCreator);
}Proposed
public TGivenRuleTypeConjunction ResideInNamespaceMatching(string pattern)
{
_ruleCreator.AddPredicate(
TypePredicatesDefinition<TRuleType>.ResideInNamespaceMatching(pattern)
);
return Create<TGivenRuleTypeConjunction, TRuleType>(_ruleCreator);
}marcoatribeiro and tnotheis
Metadata
Metadata
Assignees
Labels
needs-triageIndicates that an issue needs to be categorized.Indicates that an issue needs to be categorized.