commit 99cf32413601c3348f665c4132a6a096e00f3b54
parent b368ebf988178ed83775a94b604885aa89e25406
Author: Florian Dold <florian.dold@gmail.com>
Date: Sun, 16 Oct 2016 22:13:46 +0000
fix comment
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/include/gnunet_mq_lib.h b/src/include/gnunet_mq_lib.h
@@ -716,7 +716,7 @@ GNUNET_MQ_impl_send_continue (struct GNUNET_MQ_Handle *mq);
/**
* Call the send notification for the current message, but do not
- * try to send the message until #gnunet_mq_impl_send_continue
+ * try to send the next message until #gnunet_mq_impl_send_continue
* is called.
*
* only useful for implementing message queues, results in undefined
diff --git a/src/util/mq.c b/src/util/mq.c
@@ -518,7 +518,7 @@ GNUNET_MQ_impl_send_continue (struct GNUNET_MQ_Handle *mq)
/**
* Call the send notification for the current message, but do not
- * try to send the message until #gnunet_mq_impl_send_continue
+ * try to send the next message until #gnunet_mq_impl_send_continue
* is called.
*
* only useful for implementing message queues, results in undefined