Skip to content

Commit a7a5f5f

Browse files
committed
docstring.
1 parent 08220c6 commit a7a5f5f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

conjure-go-client/httpclient/internal/rr_selector.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ type roundRobinSelector struct {
2929
}
3030

3131
// NewRoundRobinURISelector returns a URI scorer that uses a round robin algorithm for selecting URIs when scoring
32-
// using a rand.Rand seeded by the nanoClock function. The middleware no-ops on each request.
32+
// using a rand.Rand seeded by the nanoClock function. The middleware no-ops on each request. This selector will always
33+
// return one URI.
3334
func NewRoundRobinURISelector(nanoClock func() int64) URISelector {
3435
return &roundRobinSelector{
3536
source: rand.NewSource(nanoClock()),

0 commit comments

Comments
 (0)