From 7520ef622d731183733a44ffb9a7ea31bd8eebc6 Mon Sep 17 00:00:00 2001
From: "A. Maitland Bottoms" <bottoms@debian.org>
Date: Sun, 27 Sep 2020 17:32:01 -0400
Subject: [PATCH] spelling

---
 gnuradio-runtime/include/gnuradio/block.h                   | 2 +-
 gnuradio-runtime/include/gnuradio/flowgraph.h               | 2 +-
 gnuradio-runtime/lib/math/random.cc                         | 2 +-
 gnuradio-runtime/lib/tpb_thread_body.cc                     | 2 +-
 gr-blocks/include/gnuradio/blocks/sample_and_hold.h         | 2 +-
 gr-blocks/include/gnuradio/blocks/threshold_ff.h            | 2 +-
 gr-blocks/python/blocks/qa_file_source.py                   | 2 +-
 gr-digital/include/gnuradio/digital/cma_equalizer_cc.h      | 2 +-
 gr-digital/include/gnuradio/digital/constellation.h         | 2 +-
 gr-digital/include/gnuradio/digital/header_format_crc.h     | 2 +-
 gr-digital/include/gnuradio/digital/header_format_ofdm.h    | 2 +-
 gr-digital/include/gnuradio/digital/packet_header_default.h | 2 +-
 gr-digital/include/gnuradio/digital/symbol_sync_cc.h        | 4 ++--
 gr-digital/include/gnuradio/digital/symbol_sync_ff.h        | 4 ++--
 gr-digital/lib/clock_tracking_loop.h                        | 2 +-
 gr-digital/lib/constellation_receiver_cb_impl.h             | 2 +-
 gr-filter/lib/pm_remez.cc                                   | 2 +-
 gr-qtgui/include/gnuradio/qtgui/plot_raster.h               | 2 +-
 gr-qtgui/include/gnuradio/qtgui/plot_waterfall.h            | 2 +-
 grc/core/FlowGraph.py                                       | 2 +-
 20 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/gnuradio-runtime/include/gnuradio/block.h b/gnuradio-runtime/include/gnuradio/block.h
index 58b86e3ea..e3d290ca6 100644
--- a/gnuradio-runtime/include/gnuradio/block.h
+++ b/gnuradio-runtime/include/gnuradio/block.h
@@ -333,7 +333,7 @@ public:
 
     /*!
      * \brief return a reference to the multiple precision rational
-     * represntation of the approximate output rate / input rate
+     * representation of the approximate output rate / input rate
      */
     mpq_class& mp_relative_rate() { return d_mp_relative_rate; }
 
diff --git a/gnuradio-runtime/include/gnuradio/flowgraph.h b/gnuradio-runtime/include/gnuradio/flowgraph.h
index 7bef328af..e8ef9ade8 100644
--- a/gnuradio-runtime/include/gnuradio/flowgraph.h
+++ b/gnuradio-runtime/include/gnuradio/flowgraph.h
@@ -255,7 +255,7 @@ public:
     basic_block_vector_t topological_sort(basic_block_vector_t& blocks);
 
     /*!
-     * \brief Calculate vector of disjoint graph partions
+     * \brief Calculate vector of disjoint graph partitions
      * \return vector of disjoint vectors of topologically sorted blocks
      */
     std::vector<basic_block_vector_t> partition();
diff --git a/gnuradio-runtime/lib/math/random.cc b/gnuradio-runtime/lib/math/random.cc
index 223e9141f..4997f95a7 100644
--- a/gnuradio-runtime/lib/math/random.cc
+++ b/gnuradio-runtime/lib/math/random.cc
@@ -56,7 +56,7 @@ random::random(unsigned int seed, int min_integer, int max_integer)
     d_integer_dis = new boost::uniform_int<>(0, 1); // another "mapper"
     d_generator = NULL; // MUST be reinstantiated on every call to reseed.
     d_integer_generator =
-        NULL; // MUST be reinstantiated on everytime d_rng or d_integer_dis is changed.
+        NULL;     // MUST be reinstantiated whenever d_rng or d_integer_dis is changed.
     reseed(seed); // set seed for random number generator
     set_integer_limits(min_integer, max_integer);
 }
diff --git a/gnuradio-runtime/lib/tpb_thread_body.cc b/gnuradio-runtime/lib/tpb_thread_body.cc
index d64fd2f62..85b497812 100644
--- a/gnuradio-runtime/lib/tpb_thread_body.cc
+++ b/gnuradio-runtime/lib/tpb_thread_body.cc
@@ -88,7 +88,7 @@ tpb_thread_body::tpb_thread_body(block_sptr block,
         gr::thread::set_thread_priority(d->thread, block->thread_priority());
     }
 
-    // make sure our block isnt finished
+    // make sure our block isn't finished
     block->clear_finished();
 
     start_sync->wait();
diff --git a/gr-blocks/include/gnuradio/blocks/sample_and_hold.h b/gr-blocks/include/gnuradio/blocks/sample_and_hold.h
index 71230e719..f2ceb7a90 100644
--- a/gr-blocks/include/gnuradio/blocks/sample_and_hold.h
+++ b/gr-blocks/include/gnuradio/blocks/sample_and_hold.h
@@ -37,7 +37,7 @@ namespace blocks {
  *
  * \details
  * Samples the data stream (input stream 0) and holds the value if
- * the control signal is 1 (intput stream 1).
+ * the control signal is 1 (input stream 1).
  */
 template <class T>
 class BLOCKS_API sample_and_hold : virtual public sync_block
diff --git a/gr-blocks/include/gnuradio/blocks/threshold_ff.h b/gr-blocks/include/gnuradio/blocks/threshold_ff.h
index 1fb9b2516..67896bb48 100644
--- a/gr-blocks/include/gnuradio/blocks/threshold_ff.h
+++ b/gr-blocks/include/gnuradio/blocks/threshold_ff.h
@@ -35,7 +35,7 @@ namespace blocks {
  *
  * \details
  * Test the incoming signal against a threshold. If the signal
- * excedes the \p hi value, it will output a 1 until the signal
+ * exceeds the \p hi value, it will output a 1 until the signal
  * falls below the \p lo value.
  */
 class BLOCKS_API threshold_ff : virtual public sync_block
diff --git a/gr-blocks/python/blocks/qa_file_source.py b/gr-blocks/python/blocks/qa_file_source.py
index 3829386e3..61987b550 100644
--- a/gr-blocks/python/blocks/qa_file_source.py
+++ b/gr-blocks/python/blocks/qa_file_source.py
@@ -61,7 +61,7 @@ class test_file_source(gr_unittest.TestCase):
 
     def test_file_source_no_such_file(self):
         """
-        Try to open a non-existant file and verify exception is thrown.
+        Try to open a non-existent file and verify exception is thrown.
         """
         try:
             _ = blocks.file_source(gr.sizeof_float, "___no_such_file___")
diff --git a/gr-digital/include/gnuradio/digital/cma_equalizer_cc.h b/gr-digital/include/gnuradio/digital/cma_equalizer_cc.h
index e4973c28f..966d1bd4f 100644
--- a/gr-digital/include/gnuradio/digital/cma_equalizer_cc.h
+++ b/gr-digital/include/gnuradio/digital/cma_equalizer_cc.h
@@ -54,7 +54,7 @@ public:
     /*!
      * Make a CMA Equalizer block
      *
-     * \param num_taps Numer of taps in the equalizer (channel size)
+     * \param num_taps Number of taps in the equalizer (channel size)
      * \param modulus Modulus of the modulated signals
      * \param mu Gain of the update loop
      * \param sps Number of samples per symbol of the input signal
diff --git a/gr-digital/include/gnuradio/digital/constellation.h b/gr-digital/include/gnuradio/digital/constellation.h
index 0be3d6873..debc5f4a7 100644
--- a/gr-digital/include/gnuradio/digital/constellation.h
+++ b/gr-digital/include/gnuradio/digital/constellation.h
@@ -225,7 +225,7 @@ protected:
 /*                                                          */
 /************************************************************/
 
-/*! \brief Calculate Euclidian distance for any constellation
+/*! \brief Calculate Euclidean distance for any constellation
  *  \ingroup digital
  *
  * \details
diff --git a/gr-digital/include/gnuradio/digital/header_format_crc.h b/gr-digital/include/gnuradio/digital/header_format_crc.h
index d68af351f..ab3892598 100644
--- a/gr-digital/include/gnuradio/digital/header_format_crc.h
+++ b/gr-digital/include/gnuradio/digital/header_format_crc.h
@@ -72,7 +72,7 @@ public:
      * Uses the following header format:
      *  - Bits 0-11: The packet length (what was stored in the tag with key \p
      * len_tag_key)
-     *  - Bits 12-23: The header number (counts up everytime this function is called)
+     *  - Bits 12-23: The header number (counts up every time this function is called)
      *  - Bit 24-31: 8-Bit CRC
      */
     virtual bool format(int nbytes_in,
diff --git a/gr-digital/include/gnuradio/digital/header_format_ofdm.h b/gr-digital/include/gnuradio/digital/header_format_ofdm.h
index 7e9d62ac7..04bc1cb11 100644
--- a/gr-digital/include/gnuradio/digital/header_format_ofdm.h
+++ b/gr-digital/include/gnuradio/digital/header_format_ofdm.h
@@ -76,7 +76,7 @@ public:
      * Uses the following header format:
      *  - Bits 0-11: The packet length (what was stored in the tag with key \p
      * len_tag_key)
-     *  - Bits 12-23: The header number (counts up everytime this function is called)
+     *  - Bits 12-23: The header number (counts up every time this function is called)
      *  - Bit 24-31: 8-Bit CRC
      */
     virtual bool format(int nbytes_in,
diff --git a/gr-digital/include/gnuradio/digital/packet_header_default.h b/gr-digital/include/gnuradio/digital/packet_header_default.h
index ad1290458..77cbbbbea 100644
--- a/gr-digital/include/gnuradio/digital/packet_header_default.h
+++ b/gr-digital/include/gnuradio/digital/packet_header_default.h
@@ -71,7 +71,7 @@ public:
      *
      * Uses the following header format:
      * Bits 0-11: The packet length (what was stored in the tag with key \p len_tag_key)
-     * Bits 12-23: The header number (counts up everytime this function is called)
+     * Bits 12-23: The header number (counts up every time this function is called)
      * Bit 24-31: 8-Bit CRC
      * All other bits: Are set to zero
      *
diff --git a/gr-digital/include/gnuradio/digital/symbol_sync_cc.h b/gr-digital/include/gnuradio/digital/symbol_sync_cc.h
index b2e2f9a58..aee9aa95c 100644
--- a/gr-digital/include/gnuradio/digital/symbol_sync_cc.h
+++ b/gr-digital/include/gnuradio/digital/symbol_sync_cc.h
@@ -236,7 +236,7 @@ public:
      *
      * Damping factor of the 2nd order loop transfer function.
      * When a new damping factor is set, the gains, alpha and beta,
-     * of the loop are automatcally recalculated.
+     * of the loop are automatically recalculated.
      *
      * \param zeta    loop damping factor
      */
@@ -255,7 +255,7 @@ public:
      * properly from the desired input loop bandwidth and damping factor.
      *
      * When a new ted_gain is set, the gains, alpha and beta,
-     * of the loop are automatcally recalculated.
+     * of the loop are automatically recalculated.
      *
      * \param ted_gain    expected gain of the timing error detector
      */
diff --git a/gr-digital/include/gnuradio/digital/symbol_sync_ff.h b/gr-digital/include/gnuradio/digital/symbol_sync_ff.h
index b5f9cfa51..9969de161 100644
--- a/gr-digital/include/gnuradio/digital/symbol_sync_ff.h
+++ b/gr-digital/include/gnuradio/digital/symbol_sync_ff.h
@@ -236,7 +236,7 @@ public:
      *
      * Damping factor of the 2nd order loop transfer function.
      * When a new damping factor is set, the gains, alpha and beta,
-     * of the loop are automatcally recalculated.
+     * of the loop are automatically recalculated.
      *
      * \param zeta    loop damping factor
      */
@@ -255,7 +255,7 @@ public:
      * properly from the desired input loop bandwidth and damping factor.
      *
      * When a new ted_gain is set, the gains, alpha and beta,
-     * of the loop are automatcally recalculated.
+     * of the loop are automatically recalculated.
      *
      * \param ted_gain    expected gain of the timing error detector
      */
diff --git a/gr-digital/lib/clock_tracking_loop.h b/gr-digital/lib/clock_tracking_loop.h
index 3d5fa9887..776deb459 100644
--- a/gr-digital/lib/clock_tracking_loop.h
+++ b/gr-digital/lib/clock_tracking_loop.h
@@ -492,7 +492,7 @@ public:
      * properly from the desired input loop bandwidth and damping factor.
      *
      * When a new ted_gain is set, the gains, alpha and beta,
-     * of the loop are automatcally recalculated.
+     * of the loop are automatically recalculated.
      *
      * \param ted_gain    expected gain of the timing error detector
      */
diff --git a/gr-digital/lib/constellation_receiver_cb_impl.h b/gr-digital/lib/constellation_receiver_cb_impl.h
index 45e3755e4..3a17839b2 100644
--- a/gr-digital/lib/constellation_receiver_cb_impl.h
+++ b/gr-digital/lib/constellation_receiver_cb_impl.h
@@ -69,7 +69,7 @@ private:
      * Message handler port to update the phase of the rotator. The
      * phase should be a real number (float or double) that is added
      * to the current phase. So we can rotate the constellation by
-     * 90 degress by passing a value of pmt::from_double(GR_M_PI/2).
+     * 90 degrees by passing a value of pmt::from_double(GR_M_PI/2).
      */
     void handle_rotate_phase(pmt::pmt_t rotation);
 
diff --git a/gr-filter/lib/pm_remez.cc b/gr-filter/lib/pm_remez.cc
index 6cb45d692..bf682cb93 100644
--- a/gr-filter/lib/pm_remez.cc
+++ b/gr-filter/lib/pm_remez.cc
@@ -310,7 +310,7 @@ static double compute_A(double freq, int r, double ad[], double x[], double y[])
  * int gridsize  - Number of elements in the dense frequency grid
  * double Grid[] - Frequencies on the dense grid [gridsize]
  * double D[]    - Desired response on the dense grid [gridsize]
- * double W[]    - Weight function on the desnse grid [gridsize]
+ * double W[]    - Weight function on the dense grid [gridsize]
  *
  * OUTPUT:
  * -------
diff --git a/gr-qtgui/include/gnuradio/qtgui/plot_raster.h b/gr-qtgui/include/gnuradio/qtgui/plot_raster.h
index c9718db5a..578e24873 100644
--- a/gr-qtgui/include/gnuradio/qtgui/plot_raster.h
+++ b/gr-qtgui/include/gnuradio/qtgui/plot_raster.h
@@ -39,7 +39,7 @@ class QwtColorMap;
  * \ingroup qtgui_blk
  *
  * \details
- * A time raster displays threedimenional data, where the 3rd dimension
+ * A time raster displays three-dimensional data, where the 3rd dimension
  * (the intensity) is displayed using colors. The colors are calculated
  * from the values using a color map.
  *
diff --git a/gr-qtgui/include/gnuradio/qtgui/plot_waterfall.h b/gr-qtgui/include/gnuradio/qtgui/plot_waterfall.h
index df6dfe773..93af93477 100644
--- a/gr-qtgui/include/gnuradio/qtgui/plot_waterfall.h
+++ b/gr-qtgui/include/gnuradio/qtgui/plot_waterfall.h
@@ -39,7 +39,7 @@ class QwtColorMap;
  * \ingroup qtgui_blk
  *
  * \details
- * A waterfall displays threedimenional data, where the 3rd dimension
+ * A waterfall displays three-dimensional data, where the 3rd dimension
  * (the intensity) is displayed using colors. The colors are calculated
  * from the values using a color map.
  *
diff --git a/grc/core/FlowGraph.py b/grc/core/FlowGraph.py
index 723fc23cd..c4ca408e5 100644
--- a/grc/core/FlowGraph.py
+++ b/grc/core/FlowGraph.py
@@ -268,7 +268,7 @@ class FlowGraph(Element):
                 value = eval(variable_block.value, namespace, variable_block.namespace)
                 namespace[variable_block.name] = value
                 self.namespace.update(namespace) # rewrite on subsequent blocks depends on an updated self.namespace 
-            except TypeError: #Type Errors may happen, but that desn't matter as they are displayed in the gui
+            except TypeError: #Type Errors may happen, but that doesn't matter as they are displayed in the gui
                 pass
             except Exception:
                 log.exception('Failed to evaluate variable block {0}'.format(variable_block.name), exc_info=True)
-- 
2.20.1

