summaryrefslogtreecommitdiff
path: root/gr-digital
diff options
context:
space:
mode:
authorluzpaz <luzpaz@users.noreply.github.com>2020-10-29 12:35:15 -0400
committerGitHub <noreply@github.com>2020-10-29 12:35:15 -0400
commit3623a3da34ce1ee870d3f9d52582b2a082cf5f01 (patch)
tree3e851740fda3bb6c0341619ae6b2e528d9719279 /gr-digital
parentcae088eb3ef5bc12844fbbd265363bfadec6a798 (diff)
Fix typos throughout the code
* Fix various typos Found via `codespell v2.0.dev` `codespell -q 3 -L ans,fo,hist,inout,ist,ith,nd,sinc,uint -S ./volk`
Diffstat (limited to 'gr-digital')
-rw-r--r--gr-digital/include/gnuradio/digital/cma_equalizer_cc.h2
-rw-r--r--gr-digital/include/gnuradio/digital/constellation.h2
-rw-r--r--gr-digital/include/gnuradio/digital/symbol_sync_cc.h4
-rw-r--r--gr-digital/include/gnuradio/digital/symbol_sync_ff.h4
-rw-r--r--gr-digital/lib/clock_tracking_loop.h2
-rw-r--r--gr-digital/lib/constellation_receiver_cb_impl.h2
-rw-r--r--gr-digital/python/digital/bindings/cma_equalizer_cc_python.cc2
-rw-r--r--gr-digital/python/digital/bindings/constellation_python.cc4
-rw-r--r--gr-digital/python/digital/bindings/symbol_sync_cc_python.cc4
-rw-r--r--gr-digital/python/digital/bindings/symbol_sync_ff_python.cc4
10 files changed, 15 insertions, 15 deletions
diff --git a/gr-digital/include/gnuradio/digital/cma_equalizer_cc.h b/gr-digital/include/gnuradio/digital/cma_equalizer_cc.h
index c067aa5329..4b48fef6ee 100644
--- a/gr-digital/include/gnuradio/digital/cma_equalizer_cc.h
+++ b/gr-digital/include/gnuradio/digital/cma_equalizer_cc.h
@@ -43,7 +43,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 4924733d6d..7371932f60 100644
--- a/gr-digital/include/gnuradio/digital/constellation.h
+++ b/gr-digital/include/gnuradio/digital/constellation.h
@@ -212,7 +212,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/symbol_sync_cc.h b/gr-digital/include/gnuradio/digital/symbol_sync_cc.h
index af65940b41..a2ce8f7a05 100644
--- a/gr-digital/include/gnuradio/digital/symbol_sync_cc.h
+++ b/gr-digital/include/gnuradio/digital/symbol_sync_cc.h
@@ -224,7 +224,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
*/
@@ -243,7 +243,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 b8c1716d5a..93f467ea0f 100644
--- a/gr-digital/include/gnuradio/digital/symbol_sync_ff.h
+++ b/gr-digital/include/gnuradio/digital/symbol_sync_ff.h
@@ -224,7 +224,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
*/
@@ -243,7 +243,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 981114117f..ebc0893d3b 100644
--- a/gr-digital/lib/clock_tracking_loop.h
+++ b/gr-digital/lib/clock_tracking_loop.h
@@ -526,7 +526,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 b2768be6da..b5ee046a44 100644
--- a/gr-digital/lib/constellation_receiver_cb_impl.h
+++ b/gr-digital/lib/constellation_receiver_cb_impl.h
@@ -57,7 +57,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-digital/python/digital/bindings/cma_equalizer_cc_python.cc b/gr-digital/python/digital/bindings/cma_equalizer_cc_python.cc
index ca9ddd62a6..3daa62ee82 100644
--- a/gr-digital/python/digital/bindings/cma_equalizer_cc_python.cc
+++ b/gr-digital/python/digital/bindings/cma_equalizer_cc_python.cc
@@ -14,7 +14,7 @@
/* BINDTOOL_GEN_AUTOMATIC(0) */
/* BINDTOOL_USE_PYGCCXML(0) */
/* BINDTOOL_HEADER_FILE(cma_equalizer_cc.h) */
-/* BINDTOOL_HEADER_FILE_HASH(75c10b4e338f162c2d71d137f0836689) */
+/* BINDTOOL_HEADER_FILE_HASH(3d7ebc78bf6a6c712f19f13f3e20648a) */
/***********************************************************************************/
#include <pybind11/complex.h>
diff --git a/gr-digital/python/digital/bindings/constellation_python.cc b/gr-digital/python/digital/bindings/constellation_python.cc
index 6fae9f8a77..759502873a 100644
--- a/gr-digital/python/digital/bindings/constellation_python.cc
+++ b/gr-digital/python/digital/bindings/constellation_python.cc
@@ -13,8 +13,8 @@
/* If manual edits are made, the following tags should be modified accordingly. */
/* BINDTOOL_GEN_AUTOMATIC(0) */
/* BINDTOOL_USE_PYGCCXML(0) */
-/* BINDTOOL_HEADER_FILE(constellation.h) */
-/* BINDTOOL_HEADER_FILE_HASH(88a9804617d38b7414a38c6bb77199ae) */
+/* BINDTOOL_HEADER_FILE(constellation.h) */
+/* BINDTOOL_HEADER_FILE_HASH(a4bdcaf2db30bfe32e518f4f4b62bafa) */
/***********************************************************************************/
#include <pybind11/complex.h>
diff --git a/gr-digital/python/digital/bindings/symbol_sync_cc_python.cc b/gr-digital/python/digital/bindings/symbol_sync_cc_python.cc
index 83522fb84c..4c8037b104 100644
--- a/gr-digital/python/digital/bindings/symbol_sync_cc_python.cc
+++ b/gr-digital/python/digital/bindings/symbol_sync_cc_python.cc
@@ -13,8 +13,8 @@
/* If manual edits are made, the following tags should be modified accordingly. */
/* BINDTOOL_GEN_AUTOMATIC(0) */
/* BINDTOOL_USE_PYGCCXML(0) */
-/* BINDTOOL_HEADER_FILE(symbol_sync_cc.h) */
-/* BINDTOOL_HEADER_FILE_HASH(6031664528c8f0fb0834ad9d79b65553) */
+/* BINDTOOL_HEADER_FILE(symbol_sync_cc.h) */
+/* BINDTOOL_HEADER_FILE_HASH(a6425f9904862a6d1eac5e8f884e14cd) */
/***********************************************************************************/
#include <pybind11/complex.h>
diff --git a/gr-digital/python/digital/bindings/symbol_sync_ff_python.cc b/gr-digital/python/digital/bindings/symbol_sync_ff_python.cc
index 9af1222aae..56400aeca1 100644
--- a/gr-digital/python/digital/bindings/symbol_sync_ff_python.cc
+++ b/gr-digital/python/digital/bindings/symbol_sync_ff_python.cc
@@ -13,8 +13,8 @@
/* If manual edits are made, the following tags should be modified accordingly. */
/* BINDTOOL_GEN_AUTOMATIC(0) */
/* BINDTOOL_USE_PYGCCXML(0) */
-/* BINDTOOL_HEADER_FILE(symbol_sync_ff.h) */
-/* BINDTOOL_HEADER_FILE_HASH(8fecc2546d8c4e383b70c824b2cbfaf8) */
+/* BINDTOOL_HEADER_FILE(symbol_sync_ff.h) */
+/* BINDTOOL_HEADER_FILE_HASH(be3b845025900d5a510daf14508add97) */
/***********************************************************************************/
#include <pybind11/complex.h>