aboutsummaryrefslogtreecommitdiffstats
path: root/gr-fft
diff options
context:
space:
mode:
authorluz paz <luzpaz@users.noreply.github.com>2021-01-29 15:47:34 -0500
committerMartin Braun <martin@gnuradio.org>2021-02-08 17:40:25 +0100
commit11ec061846d488f2bb58c26ac7a74ac8e329810d (patch)
treeb85f26f6785a74548221ed51025a6574c4386f12 /gr-fft
parentcmake: removes cmake_prefix_path from hints list in FindQWT.cmake (diff)
downloadgnuradio-11ec061846d488f2bb58c26ac7a74ac8e329810d.tar.xz
gnuradio-11ec061846d488f2bb58c26ac7a74ac8e329810d.zip
Fix typos
Found via `codespell v2.1.dev0` `codespell -q 3 -L ans,fo,hist,inout,ist,ith,nd,sinc,uint -S ./volk` Signed-off-by: luz paz <luzpaz@users.noreply.github.com> Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
Diffstat (limited to 'gr-fft')
-rw-r--r--gr-fft/include/gnuradio/fft/window.h2
-rw-r--r--gr-fft/lib/window.cc2
-rw-r--r--gr-fft/python/fft/bindings/window_python.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/gr-fft/include/gnuradio/fft/window.h b/gr-fft/include/gnuradio/fft/window.h
index b0f726fd5..a77ca5802 100644
--- a/gr-fft/include/gnuradio/fft/window.h
+++ b/gr-fft/include/gnuradio/fft/window.h
@@ -72,7 +72,7 @@ public:
* is a good bound.
*
* The Gaussian window should not be used for window based filter construction;
- * instead there is a dedicated gaussian filter construction fuction. There is no
+ * instead there is a dedicated gaussian filter construction function. There is no
* meaningful way to measure approximation error 'delta' as shown in Fig 7.23 of
* Oppenheim and Schafer (Discrete-Time Signal Processing, 3rd edition).
*
diff --git a/gr-fft/lib/window.cc b/gr-fft/lib/window.cc
index 2dd8cf5ad..180ddb4ee 100644
--- a/gr-fft/lib/window.cc
+++ b/gr-fft/lib/window.cc
@@ -87,7 +87,7 @@ double window::max_attenuation(win_type type, double param)
// value not meaningful for gaussian windows, but return something reasonable
return 100;
case WIN_TUKEY:
- // low end is a rectangular window, attenuation exponentialy approaches Hann
+ // low end is a rectangular window, attenuation exponentially approaches Hann
// piecewise linear estimate, determined empirically via curve fitting, median
// error is less than 0.5dB and maximum error is 2.5dB; the returned value will
// never be less than expected attenuation to ensure that window designed filters
diff --git a/gr-fft/python/fft/bindings/window_python.cc b/gr-fft/python/fft/bindings/window_python.cc
index 28e4b8ccf..29f9d7000 100644
--- a/gr-fft/python/fft/bindings/window_python.cc
+++ b/gr-fft/python/fft/bindings/window_python.cc
@@ -14,7 +14,7 @@
/* BINDTOOL_GEN_AUTOMATIC(0) */
/* BINDTOOL_USE_PYGCCXML(0) */
/* BINDTOOL_HEADER_FILE(window.h) */
-/* BINDTOOL_HEADER_FILE_HASH(4de3c97757728a4acfbd8b1c29181431) */
+/* BINDTOOL_HEADER_FILE_HASH(872e1911444c9a5982f4d00af81a2def) */
/***********************************************************************************/
#include <pybind11/complex.h>