summaryrefslogtreecommitdiff
path: root/gr-fec
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2019-07-09 16:27:22 -0400
committerMarcus Müller <marcus@hostalia.de>2019-07-17 22:54:23 +0200
commit925e1103e5791dc8be684a5269efc36c1bf4f557 (patch)
treeb56cbff2a2bb8e7f16805197d2c729397c5ec4f6 /gr-fec
parent15452407e043b3d1fe3f152c2590bc95b40b4342 (diff)
Fix for misc. documentation + trivial typos
Found via `codespell -q 3 -L ans,sinc,hist,ist,ith,uint,fo -S ./volk` Fix typos in gnuradio-runtime/ Fix typos in gr-digital/ Fix typos in gr-qtgui/ Fix typos in gr-channels/ Fix typos in grc/ Fix typos gr-filter/ Fix typos in gr-uhd/ Fix typos in gr-blocks/ Fix typos in gr-fec/
Diffstat (limited to 'gr-fec')
-rw-r--r--gr-fec/grc/fec_decoder.block.yml2
-rw-r--r--gr-fec/grc/fec_encoder.block.yml2
-rw-r--r--gr-fec/python/fec/polar/polar_channel_construction2
3 files changed, 3 insertions, 3 deletions
diff --git a/gr-fec/grc/fec_decoder.block.yml b/gr-fec/grc/fec_decoder.block.yml
index b90a4749c4..159ae15e13 100644
--- a/gr-fec/grc/fec_decoder.block.yml
+++ b/gr-fec/grc/fec_decoder.block.yml
@@ -36,6 +36,6 @@ templates:
make: fec.decoder(${decoder}, ${itype.size}, ${otype.size})
documentation: |-
- This is a GNU Radio adaptor for any FEC decoder following the generic_decoder API in the fec module. Input and output are flexible to accomodate decoders that, say, modulate their encoded results into complex or float types.
+ This is a GNU Radio adaptor for any FEC decoder following the generic_decoder API in the fec module. Input and output are flexible to accommodate decoders that, say, modulate their encoded results into complex or float types.
file_format: 1
diff --git a/gr-fec/grc/fec_encoder.block.yml b/gr-fec/grc/fec_encoder.block.yml
index f530d806dc..76bd9874b4 100644
--- a/gr-fec/grc/fec_encoder.block.yml
+++ b/gr-fec/grc/fec_encoder.block.yml
@@ -36,6 +36,6 @@ templates:
make: fec.encoder(${encoder}, ${itype.size}, ${otype.size})
documentation: |-
- This is a GNU Radio adaptor for any FEC encoder following the generic_encoder API in the fec module. Input and output are flexible to accomodate encoders that, say, modulate their encoded results into complex or float types.
+ This is a GNU Radio adaptor for any FEC encoder following the generic_encoder API in the fec module. Input and output are flexible to accommodate encoders that, say, modulate their encoded results into complex or float types.
file_format: 1
diff --git a/gr-fec/python/fec/polar/polar_channel_construction b/gr-fec/python/fec/polar/polar_channel_construction
index 1c999aa145..9d74ec68ec 100644
--- a/gr-fec/python/fec/polar/polar_channel_construction
+++ b/gr-fec/python/fec/polar/polar_channel_construction
@@ -34,7 +34,7 @@ def setup_parser():
default='BEC')
parser.add_argument("-b", "--blocksize", type=int, dest="block_size",
help="specify block size of polar code (default=16)", default=16)
- parser.add_argument("-s", "--desgin-snr", type=float, dest="design_snr",
+ parser.add_argument("-s", "--design-snr", type=float, dest="design_snr",
help="specify design SNR of polar code (default=0.0)", default=0.0)
parser.add_argument("-k", "--mu", type=int,
help="specify block size of polar code (default=2)", default=2)