From cda92ba985f892fed5df5d9a9be6d7b47d6f6bec Mon Sep 17 00:00:00 2001 From: Matt Perpick Date: Fri, 24 Apr 2015 18:28:01 -0400 Subject: [PATCH] Fix async producer typo s/confured/enabled --- async_producer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async_producer.go b/async_producer.go index 59c29a219..d8f2b06c9 100644 --- a/async_producer.go +++ b/async_producer.go @@ -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