summaryrefslogtreecommitdiff
path: root/gr-digital/python
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-digital/python
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-digital/python')
-rw-r--r--gr-digital/python/digital/digital_voice.py.real2
-rw-r--r--gr-digital/python/digital/ofdm_receiver.py2
-rw-r--r--gr-digital/python/digital/qa_constellation.py2
-rw-r--r--gr-digital/python/digital/soft_dec_lut_gen.py2
-rw-r--r--gr-digital/python/digital/utils/gray_code.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/gr-digital/python/digital/digital_voice.py.real b/gr-digital/python/digital/digital_voice.py.real
index 241a4a3dc2..859bf981e6 100644
--- a/gr-digital/python/digital/digital_voice.py.real
+++ b/gr-digital/python/digital/digital_voice.py.real
@@ -51,7 +51,7 @@ AIR_FRAME_SIZE = 70
class digital_voice_tx(gr.hier_block):
"""
- Hierarchical block for digital voice tranmission.
+ Hierarchical block for digital voice transmission.
The input is 8kS/sec floating point audio in the range [-1,+1]
The output is 256kS/sec GMSK modulated complex baseband signal in the range [-1,+1].
diff --git a/gr-digital/python/digital/ofdm_receiver.py b/gr-digital/python/digital/ofdm_receiver.py
index 0a9d79f728..05d4e09222 100644
--- a/gr-digital/python/digital/ofdm_receiver.py
+++ b/gr-digital/python/digital/ofdm_receiver.py
@@ -45,7 +45,7 @@ class ofdm_receiver(gr.hier_block2):
The receiver performs channel filtering as well as symbol, frequency, and phase synchronization.
The synchronization routines are available in three flavors: preamble correlator (Schmidl and Cox),
- modifid preamble correlator with autocorrelation (not yet working), and cyclic prefix correlator
+ modified preamble correlator with autocorrelation (not yet working), and cyclic prefix correlator
(Van de Beeks).
"""
diff --git a/gr-digital/python/digital/qa_constellation.py b/gr-digital/python/digital/qa_constellation.py
index c21afc03a6..428cfd92bd 100644
--- a/gr-digital/python/digital/qa_constellation.py
+++ b/gr-digital/python/digital/qa_constellation.py
@@ -37,7 +37,7 @@ tested_mod_codes = (mod_codes.NO_CODE, mod_codes.GRAY_CODE)
# Second item is a dictionary of arguments for function with lists of
# possible values.
# Third item is whether differential encoding should be tested.
-# Fourth item is the name of the argument to constructor that specifices
+# Fourth item is the name of the argument to constructor that specifies
# whether differential encoding is used.
def twod_constell():
diff --git a/gr-digital/python/digital/soft_dec_lut_gen.py b/gr-digital/python/digital/soft_dec_lut_gen.py
index fc69f7f678..a46f73917d 100644
--- a/gr-digital/python/digital/soft_dec_lut_gen.py
+++ b/gr-digital/python/digital/soft_dec_lut_gen.py
@@ -188,7 +188,7 @@ def calc_soft_dec(sample, constel, symbols, npwr=1):
If known, the noise power of the received sample may be passed in
to this function as npwr.
- This is an incredibly costly algorthm because it must calculate
+ This is an incredibly costly algorithm because it must calculate
the Euclidean distance between the sample and all points in the
constellation to build up its probability
calculations. Conversely, it should work for any given
diff --git a/gr-digital/python/digital/utils/gray_code.py b/gr-digital/python/digital/utils/gray_code.py
index ad88274087..982134b495 100644
--- a/gr-digital/python/digital/utils/gray_code.py
+++ b/gr-digital/python/digital/utils/gray_code.py
@@ -33,7 +33,7 @@ class GrayCodeGenerator(object):
self.lp2 = 2
# The next power of two that will be passed through.
self.np2 = 4
- # Curent index
+ # Current index
self.i = 2
def get_gray_code(self, length):