Skip to content

Commit

Permalink
Merge pull request #432 from clutchski/patch-1
Browse files Browse the repository at this point in the history
Fix async producer typo
  • Loading branch information
eapache committed Apr 25, 2015
2 parents 3534171 + cda92ba commit d0c297e
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 d0c297e

Please sign in to comment.