summaryrefslogtreecommitdiff
path: root/gr-blocks/doc/blocks.dox
diff options
context:
space:
mode:
authorTom Rondeau <tom@trondeau.com>2013-09-05 10:11:20 -0400
committerTom Rondeau <tom@trondeau.com>2013-09-05 10:11:20 -0400
commitd23aaa463d536d10e472bd9bb52400b2191edd2a (patch)
tree903813c32dca456796b31f8c7279a7da93c35c9f /gr-blocks/doc/blocks.dox
parent9720bd4baf13e1b52e3952d58bf04de21bc83dfa (diff)
blocks: fixed simple documentation for blocks module (copy/paste error from gr-digital).
Diffstat (limited to 'gr-blocks/doc/blocks.dox')
-rw-r--r--gr-blocks/doc/blocks.dox14
1 files changed, 7 insertions, 7 deletions
diff --git a/gr-blocks/doc/blocks.dox b/gr-blocks/doc/blocks.dox
index 2809c6a943..94b4a8e002 100644
--- a/gr-blocks/doc/blocks.dox
+++ b/gr-blocks/doc/blocks.dox
@@ -1,13 +1,13 @@
-/*! \page page_digital Digital Modulation
+/*! \page page_blocks Standard GNU Radio Blocks
\section Introduction
-This is the gr-digital package. It contains all of the digital
-modulation blocks, utilities, and examples. To use the digital blocks,
-the Python namespaces is in gnuradio.digital, which would be normally
-imported as:
+This is the gr-blocks package. It contains many of the generic,
+standard, or simple blocks used for many aspects of building GNU Radio
+flowgraphs. To use these blocks, the Python module is
+gnuradio.blocks, which would be normally imported as:
\code
- from gnuradio import digital
+ from gnuradio import blocks
\endcode
See the Doxygen documentation for details about the blocks available
@@ -17,7 +17,7 @@ A quick listing of the details can be found in Python after importing
by using:
\code
- help(digital)
+ help(blocks)
\endcode
*/