diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-12-03 14:57:00 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-12-03 14:57:00 -0500 |
commit | 197aa3c917c8750729e20ead831bb3a3dbce322e (patch) | |
tree | d6582b2bb33d17f1cf86220442aa445d2b7ee547 /gr-blocks/include | |
parent | f334b636ed46c62b23582ed512bb07dfb51399ef (diff) |
Docs: Fixing Doxygen markup for missing constructor parameters.
Diffstat (limited to 'gr-blocks/include')
-rw-r--r-- | gr-blocks/include/blocks/multiply_const_cc.h | 1 | ||||
-rw-r--r-- | gr-blocks/include/blocks/multiply_const_ff.h | 1 | ||||
-rw-r--r-- | gr-blocks/include/blocks/stream_mux.h | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/gr-blocks/include/blocks/multiply_const_cc.h b/gr-blocks/include/blocks/multiply_const_cc.h index 032a765a42..9572eaec70 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 e755f59bf3..d2d5e805cb 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 905ea3c9f0..58d564f9fe 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 |