Skip to content

Commit

Permalink
Fix async producer typo
Browse files Browse the repository at this point in the history
s/confured/enabled
  • Loading branch information
clutchski committed Apr 24, 2015
1 parent 3534171 commit cda92ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion async_producer.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ type AsyncProducer interface {
// Input is the input channel for the user to write messages to that they wish to send.
Input() chan<- *ProducerMessage

// Successes is the success output channel back to the user when AckSuccesses is confured.
// Successes is the success output channel back to the user when AckSuccesses is enabled.
// If Return.Successes is true, you MUST read from this channel or the Producer will deadlock.
// It is suggested that you send and read messages together in a single select statement.
Successes() <-chan *ProducerMessage
Expand Down

0 comments on commit cda92ba

Please sign in to comment.