Skip to content

Commit f936282

Browse files
committed
Change comment wording
1 parent 17deecc commit f936282

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

internal/mode/static/config/config.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type Config struct {
1515
ImageSource string
1616
// AtomicLevel is an atomically changeable, dynamic logging level.
1717
AtomicLevel zap.AtomicLevel
18-
// FlagKeyValues holds the parsed NGF flag keys and values.
18+
// FlagKeyValues contains the parsed NGF flag keys and values.
1919
FlagKeyValues FlagKeyValues
2020
// GatewayNsName is the namespaced name of a Gateway resource that the Gateway will use.
2121
// The Gateway will ignore all other Gateway resources.
@@ -108,12 +108,12 @@ type UsageReportConfig struct {
108108
InsecureSkipVerify bool
109109
}
110110

111-
// FlagKeyValues holds the parsed NGF flag keys and values.
111+
// FlagKeyValues contains the parsed NGF flag keys and values.
112112
// Flag Key and Value are paired based off of index in slice.
113113
type FlagKeyValues struct {
114-
// FlagKeys holds the name of the flag.
114+
// FlagKeys contains the name of the flag.
115115
FlagKeys []string
116-
// FlagValues holds the value of the flag in string form.
116+
// FlagValues contains the value of the flag in string form.
117117
// Value will be either true or false for boolean flags and default or user-defined for non-boolean flags.
118118
FlagValues []string
119119
}

internal/mode/static/telemetry/collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ type DataCollectorConfig struct {
7676
PodNSName types.NamespacedName
7777
// ImageSource is the source of the NGF image.
7878
ImageSource string
79-
// FlagKeyValues holds the parsed NGF flag keys and values.
79+
// FlagKeyValues contains the parsed NGF flag keys and values.
8080
FlagKeyValues config.FlagKeyValues
8181
}
8282

0 commit comments

Comments
 (0)