Skip to content

Commit af00e57

Browse files
committed
Fix typos in comments
1 parent ccc7e59 commit af00e57

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/java/frameworks/aspectj_weaver_agent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ type aspectjWeaverConfig struct {
161161
Enabled bool `yaml:"enabled"`
162162
}
163163

164-
// isEnabled checks if client certificate mapper is enabled
164+
// isEnabled checks if aspectj weaver agent is enabled
165165
func (a *aspectjWeaverConfig) isEnabled() bool {
166166
return a.Enabled
167167
}

src/java/frameworks/jrebel_agent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ type jrebelConfig struct {
153153
Enabled bool `yaml:"enabled"`
154154
}
155155

156-
// isEnabled checks if client certificate mapper is enabled
156+
// isEnabled checks if jrebel is enabled
157157
func (j *jrebelConfig) isEnabled() bool {
158158
return j.Enabled
159159
}

src/java/frameworks/metric_writer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ type metricWriterConfig struct {
196196
Enabled bool `yaml:"enabled"`
197197
}
198198

199-
// isEnabled checks if client certificate mapper is enabled
199+
// isEnabled checks if metric writer is enabled
200200
func (m *metricWriterConfig) isEnabled() bool {
201201
return m.Enabled
202202
}

0 commit comments

Comments
 (0)