Skip to content

Commit

Permalink
blocks/sinks: fix unit prefix in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
vsergeev committed Jul 2, 2016
1 parent c970fbb commit 6eed230
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion radio/blocks/sinks/gnuplotplot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
-- @signature in:Float32 >
--
-- @usage
-- -- Plot a 1 KHz cosine sampled at 250 KHz
-- -- Plot a 1 kHz cosine sampled at 250 kHz
-- local snk = radio.SignalSource('cosine', 1e3, 250e3)
-- local throttle = radio.ThrottleBlock()
-- local snk = radio.GnuplotPlotSink(1000, 'Cosine')
Expand Down
2 changes: 1 addition & 1 deletion radio/blocks/sinks/gnuplotspectrum.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
-- @signature in:Float32 >
--
-- @usage
-- -- Plot the spectrum of a 1 KHz complex exponential sampled at 250 KHz
-- -- Plot the spectrum of a 1 kHz complex exponential sampled at 250 kHz
-- local snk = radio.SignalSource('exponential', 1e3, 250e3)
-- local throttle = radio.ThrottleBlock()
-- local snk = radio.GnuplotSpectrumSink()
Expand Down
2 changes: 1 addition & 1 deletion radio/blocks/sinks/gnuplotwaterfall.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
-- @signature in:Float32 >
--
-- @usage
-- -- Plot the waterfall of a 1 KHz complex exponential sampled at 250 KHz
-- -- Plot the waterfall of a 1 kHz complex exponential sampled at 250 kHz
-- local snk = radio.SignalSource('exponential', 1e3, 250e3)
-- local throttle = radio.ThrottleBlock()
-- local snk = radio.GnuplotSpectrumSink()
Expand Down
2 changes: 1 addition & 1 deletion radio/blocks/sinks/gnuplotxyplot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
-- @signature in:ComplexFloat32 >
--
-- @usage
-- -- Plot a 1 KHz complex exponential sampled at 250 KHz
-- -- Plot a 1 kHz complex exponential sampled at 250 kHz
-- local snk = radio.SignalSource('exponential', 1e3, 250e3)
-- local throttle = radio.ThrottleBlock()
-- local snk = radio.GnuplotXYPlotSink(1000, 'Complex Exponential', {complex = true})
Expand Down

0 comments on commit 6eed230

Please sign in to comment.