Skip to content

Commit

Permalink
chore: improve docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sysulq committed Jun 21, 2024
1 parent 14b6eb3 commit 1967e06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kod.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func (r *Ref[T]) Get() T {

// isRef is a marker method to identify a Ref type.
// nolint
func (r Ref[T]) isRef() {}
func (r *Ref[T]) isRef() {}

// setRef sets the reference value.
// nolint
Expand Down Expand Up @@ -220,7 +220,7 @@ func WithInterceptors(interceptors ...interceptor.Interceptor) func(*options) {
}
}

// WithOpenTelemetryDisabled is an option setter for enabling OpenTelemetry.
// WithOpenTelemetryDisabled is an option setter for disabling OpenTelemetry.
func WithOpenTelemetryDisabled() func(*options) {
return func(opts *options) {
opts.enableOpenTelemetry = false
Expand Down

0 comments on commit 1967e06

Please sign in to comment.