summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/python/gnuradio
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 /gnuradio-runtime/python/gnuradio
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 'gnuradio-runtime/python/gnuradio')
-rw-r--r--gnuradio-runtime/python/gnuradio/gr/gateway.py2
-rw-r--r--gnuradio-runtime/python/gnuradio/gr/top_block.py4
-rw-r--r--gnuradio-runtime/python/gnuradio/gru/freqz.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/gnuradio-runtime/python/gnuradio/gr/gateway.py b/gnuradio-runtime/python/gnuradio/gr/gateway.py
index 4eaa8745ac..7637cb0818 100644
--- a/gnuradio-runtime/python/gnuradio/gr/gateway.py
+++ b/gnuradio-runtime/python/gnuradio/gr/gateway.py
@@ -95,7 +95,7 @@ class py_io_signature(object):
"""
Args:
- min_ports (int): mininum number of connected ports.
+ min_ports (int): minimum number of connected ports.
max_ports (int): maximum number of connected ports. -1 indicates
no limit.
diff --git a/gnuradio-runtime/python/gnuradio/gr/top_block.py b/gnuradio-runtime/python/gnuradio/gr/top_block.py
index afa9c3b986..87c3a81852 100644
--- a/gnuradio-runtime/python/gnuradio/gr/top_block.py
+++ b/gnuradio-runtime/python/gnuradio/gr/top_block.py
@@ -44,7 +44,7 @@ class _top_block_waiter(threading.Thread):
thread), we create a separate thread that does the blocking wait,
and then use the thread that called wait to do a slow poll of an
event queue. That thread, which is executing "wait" below is
- interruptable, and if it sees a KeyboardInterrupt, executes a stop
+ interruptible, and if it sees a KeyboardInterrupt, executes a stop
on the top_block, then goes back to waiting for it to complete.
This ensures that the unlocked wait that was in progress (in the
_top_block_waiter thread) can complete, release its mutex and back
@@ -52,7 +52,7 @@ class _top_block_waiter(threading.Thread):
things occur like leaving the USRP transmitter sending a carrier.
See also top_block.wait (below), which uses this class to implement
- the interruptable wait.
+ the interruptible wait.
"""
def __init__(self, tb):
threading.Thread.__init__(self)
diff --git a/gnuradio-runtime/python/gnuradio/gru/freqz.py b/gnuradio-runtime/python/gnuradio/gru/freqz.py
index edea6113b6..c539a03e42 100644
--- a/gnuradio-runtime/python/gnuradio/gru/freqz.py
+++ b/gnuradio-runtime/python/gnuradio/gru/freqz.py
@@ -120,7 +120,7 @@ class poly1d(object):
p[k] is the coefficient on the kth power of x (backwards from
sequencing the coefficient array.
- polynomials can be added, substracted, multiplied and divided (returns
+ polynomials can be added, subtracted, multiplied and divided (returns
quotient and remainder).
asarray(p) will also give the coefficient array, so polynomials can
be used in all functions that accept arrays.