Skip to content

Commit 1389d71

Browse files
committed
lint
1 parent 68fff4f commit 1389d71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/linter/lintFilterRuleSplitSubnet.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ type filterRuleSplitSubnet struct {
2121

2222
// a rule with the list of subnets it splits
2323
type splitRuleSubnet struct {
24-
vpcUid string
24+
vpcUID string
2525
rule vpcmodel.RuleOfFilter
2626
splitSubnets []vpcmodel.Subnet
2727
}
@@ -57,7 +57,7 @@ func (lint *filterRuleSplitSubnet) check() ([]string, error) {
5757
}
5858
if len(subnetsSplitByRule) > 0 {
5959
thisLayerSplit = append(thisLayerSplit,
60-
splitRuleSubnet{vpcUid: lint.config.VPC.UID(), rule: rule, splitSubnets: subnetsSplitByRule})
60+
splitRuleSubnet{vpcUID: lint.config.VPC.UID(), rule: rule, splitSubnets: subnetsSplitByRule})
6161
}
6262
}
6363
if len(thisLayerSplit) > 0 {

0 commit comments

Comments
 (0)