summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gr-blocks/include/blocks/multiply_const_cc.h1
-rw-r--r--gr-blocks/include/blocks/multiply_const_ff.h1
-rw-r--r--gr-blocks/include/blocks/stream_mux.h2
-rw-r--r--gruel/src/include/gruel/msg_passing.h4
4 files changed, 7 insertions, 1 deletions
diff --git a/gr-blocks/include/blocks/multiply_const_cc.h b/gr-blocks/include/blocks/multiply_const_cc.h
index 032a765a4..9572eaec7 100644
--- a/gr-blocks/include/blocks/multiply_const_cc.h
+++ b/gr-blocks/include/blocks/multiply_const_cc.h
@@ -46,6 +46,7 @@ namespace gr {
/*!
* \brief Create an instance of multiply_const_cc
* \param k complex multiplicative constant
+ * \param vlen Vector length of incoming stream
*/
static sptr make(gr_complex k, size_t vlen=1);
diff --git a/gr-blocks/include/blocks/multiply_const_ff.h b/gr-blocks/include/blocks/multiply_const_ff.h
index e755f59bf..d2d5e805c 100644
--- a/gr-blocks/include/blocks/multiply_const_ff.h
+++ b/gr-blocks/include/blocks/multiply_const_ff.h
@@ -46,6 +46,7 @@ namespace gr {
/*!
* \brief Create an instance of multiply_const_ff
* \param k real multiplicative constant
+ * \param vlen Vector length of incoming stream
*/
static sptr make(float k, size_t vlen=1);
diff --git a/gr-blocks/include/blocks/stream_mux.h b/gr-blocks/include/blocks/stream_mux.h
index 905ea3c9f..58d564f9f 100644
--- a/gr-blocks/include/blocks/stream_mux.h
+++ b/gr-blocks/include/blocks/stream_mux.h
@@ -53,7 +53,7 @@ namespace gr {
* \ingroup converter_blk
*
* \param itemsize the item size of the stream
- * \param length a vector (list/tuple) specifying the number of
+ * \param lengths a vector (list/tuple) specifying the number of
* items from each stream the mux together.
* Warning: this requires that at least as many items
* per stream are available or the system will wait
diff --git a/gruel/src/include/gruel/msg_passing.h b/gruel/src/include/gruel/msg_passing.h
index 7230dfc5b..25f30118f 100644
--- a/gruel/src/include/gruel/msg_passing.h
+++ b/gruel/src/include/gruel/msg_passing.h
@@ -36,6 +36,7 @@ namespace gruel {
* \brief send message to msg_accepter
*
* \param accepter is the target of the send.
+ * \param which_port A pmt symbol describing the port by name.
* \param msg is the message to send. It's usually a pmt tuple.
*
* Sending a message is an asynchronous operation. The \p send
@@ -55,6 +56,7 @@ namespace gruel {
* \brief send message to msg_accepter
*
* \param accepter is the target of the send.
+ * \param which_port A pmt symbol describing the port by name.
* \param msg is the message to send. It's usually a pmt tuple.
*
* Sending a message is an asynchronous operation. The \p send
@@ -74,6 +76,7 @@ namespace gruel {
* \brief send message to msg_accepter
*
* \param accepter is the target of the send.
+ * \param which_port A pmt symbol describing the port by name.
* \param msg is the message to send. It's usually a pmt tuple.
*
* Sending a message is an asynchronous operation. The \p send
@@ -93,6 +96,7 @@ namespace gruel {
* \brief send message to msg_accepter
*
* \param accepter is the target of the send. precond: pmt_is_msg_accepter(accepter)
+ * \param which_port A pmt symbol describing the port by name.
* \param msg is the message to send. It's usually a pmt tuple.
*
* Sending a message is an asynchronous operation. The \p send