summaryrefslogtreecommitdiff
path: root/docs/doxygen
diff options
context:
space:
mode:
authorTom Rondeau2012-10-02 14:52:07 -0400
committerTom Rondeau2012-10-03 12:26:17 -0400
commit1e528816fd70f3a61d7f00a370cb056f03ceb6a7 (patch)
tree7281e03578456a44f2abb5c3ff1becadccb0409c /docs/doxygen
parent5fcb7ebd473709fd9e4e99d542f21d3cee5aaf05 (diff)
downloadgnuradio-1e528816fd70f3a61d7f00a370cb056f03ceb6a7.tar.gz
gnuradio-1e528816fd70f3a61d7f00a370cb056f03ceb6a7.tar.bz2
gnuradio-1e528816fd70f3a61d7f00a370cb056f03ceb6a7.zip
core: fixed swig file for exporting max/min buffer sizes with port first.
Diffstat (limited to 'docs/doxygen')
-rw-r--r--docs/doxygen/other/main_page.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/doxygen/other/main_page.dox b/docs/doxygen/other/main_page.dox
index f2ab2a436..282682464 100644
--- a/docs/doxygen/other/main_page.dox
+++ b/docs/doxygen/other/main_page.dox
@@ -152,7 +152,7 @@ To set the output buffer size of a block, you simply call:
\code
tb.blk0.set_max_output_buffer(2000)
- tb.blk1.set_max_output_buffer(2000,1)
+ tb.blk1.set_max_output_buffer(1, 2000)
tb.start()
print tb.blk1.max_output_buffer(0)
print tb.blk1.max_output_buffer(1)