Skip to content

Commit

Permalink
composites: 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 6eed230 commit cd6afa3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion radio/composites/amenvelopedemodulator.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
-- @signature in:ComplexFloat32 > out:Float32
--
-- @usage
-- -- AM demodulator with 5 KHz bandwidth
-- -- AM demodulator with 5 kHz bandwidth
-- local demod = radio.AMEnvelopeDemodulator(5e3)

local block = require('radio.core.block')
Expand Down
2 changes: 1 addition & 1 deletion radio/composites/amsynchronousdemodulator.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
-- @signature in:ComplexFloat32 > out:Float32
--
-- @usage
-- -- AM demodulator with 100 KHz IF, 5 KHz bandwidth
-- -- AM demodulator with 100 kHz IF, 5 kHz bandwidth
-- local demod = radio.AMSynchronousDemodulator(100e3, 5e3)

local block = require('radio.core.block')
Expand Down
2 changes: 1 addition & 1 deletion radio/composites/nbfmdemodulator.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
-- @signature in:ComplexFloat32 > out:Float32
--
-- @usage
-- -- NBFM demodulator with 5KHz deviation and 4KHz bandwidth
-- -- NBFM demodulator with 5 kHz deviation and 4 kHz bandwidth
-- local demod = radio.NBFMDemodulator(5e3, 4e3)

local block = require('radio.core.block')
Expand Down
2 changes: 1 addition & 1 deletion radio/composites/pocsagreceiver.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
-- Demodulate and decode POCSAG messages from a baseband, 4.5 KHz shift FSK
-- Demodulate and decode POCSAG messages from a baseband, 4.5 kHz shift FSK
-- modulated complex-valued signal.
--
-- @category Receivers
Expand Down
2 changes: 1 addition & 1 deletion radio/composites/ssbdemodulator.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
-- @signature in:ComplexFloat32 > out:Float32
--
-- @usage
-- -- SSB LSB demodulator with 3 KHz bandwidth
-- -- SSB LSB demodulator with 3 kHz bandwidth
-- local demod = radio.SSBDemodulator("lsb", 3e3)

local block = require('radio.core.block')
Expand Down
2 changes: 1 addition & 1 deletion radio/composites/ssbmodulator.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
-- @signature in:Float32 > out:ComplexFloat32
--
-- @usage
-- -- SSB LSB modulator with 3 KHz bandwidth
-- -- SSB LSB modulator with 3 kHz bandwidth
-- local mod = radio.SSBModulator("lsb", 3e3)

local block = require('radio.core.block')
Expand Down
2 changes: 1 addition & 1 deletion radio/composites/tuner.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
-- @signature in:ComplexFloat32 > out:ComplexFloat32
--
-- @usage
-- -- Translate -100KHz, filter 12KHz, and decimate by 5
-- -- Translate -100 kHz, filter 12 kHz, and decimate by 5
-- local tuner = radio.TunerBlock(-100e3, 12e3, 5)

local block = require('radio.core.block')
Expand Down

0 comments on commit cd6afa3

Please sign in to comment.