Skip to content

Commit 27f90d1

Browse files
chore(redisotel): improve docblock language
1 parent 0e2f727 commit 27f90d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extra/redisotel/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,14 @@ func WithTracerProvider(provider trace.TracerProvider) TracingOption {
108108
})
109109
}
110110

111-
// WithDBStatement tells the tracing hook not to log raw redis commands.
111+
// WithDBStatement tells the tracing hook to log raw redis commands.
112112
func WithDBStatement(on bool) TracingOption {
113113
return tracingOption(func(conf *config) {
114114
conf.dbStmtEnabled = on
115115
})
116116
}
117117

118-
// WithCaller tells the tracing hook log the calling function, file and line.
118+
// WithCaller tells the tracing hook to log the calling function, file and line.
119119
func WithCaller(on bool) TracingOption {
120120
return tracingOption(func(conf *config) {
121121
conf.callerEnabled = on

0 commit comments

Comments
 (0)