Skip to content

Commit

Permalink
fix config docs (#75)
Browse files Browse the repository at this point in the history
fix docs
  • Loading branch information
dmarticus authored Sep 16, 2024
1 parent 84fc0bf commit f8cdf81
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,12 @@ type Config struct {

// A function called by the client to get the current time, `time.Now` is
// used by default.
// This field is not exported and only exposed internally to let unit tests
// mock the current time.
// This field is not exported and only exposed internally to control concurrency.
now func() time.Time

// The maximum number of goroutines that will be spawned by a client to send
// requests to the backend API.
// This field is not exported and only exposed internally to let unit tests
// mock the current time.
// This field is not exported and only exposed internally to control concurrency.
maxConcurrentRequests int
}

Expand Down

0 comments on commit f8cdf81

Please sign in to comment.