From d55a8facf879dfc270d4eeb01e05a73c20da873d 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 12/12] spelling

---
 gnuradio-runtime/lib/math/random.cc                         | 2 +-
 gr-blocks/include/gnuradio/blocks/threshold_ff.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 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnuradio-runtime/lib/math/random.cc b/gnuradio-runtime/lib/math/random.cc
index 223e9141f..7b85ea732 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/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-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
      *
-- 
2.20.1

