diff options
author | luzpaz <luzpaz@users.noreply.github.com> | 2020-10-29 12:35:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-29 12:35:15 -0400 |
commit | 3623a3da34ce1ee870d3f9d52582b2a082cf5f01 (patch) | |
tree | 3e851740fda3bb6c0341619ae6b2e528d9719279 /gr-blocks/python | |
parent | cae088eb3ef5bc12844fbbd265363bfadec6a798 (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-blocks/python')
4 files changed, 7 insertions, 7 deletions
diff --git a/gr-blocks/python/blocks/bindings/phase_shift_python.cc b/gr-blocks/python/blocks/bindings/phase_shift_python.cc index 21d895949a..99da171fb6 100644 --- a/gr-blocks/python/blocks/bindings/phase_shift_python.cc +++ b/gr-blocks/python/blocks/bindings/phase_shift_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(phase_shift.h) */ -/* BINDTOOL_HEADER_FILE_HASH(5657bd1fe7366cf279f6b1e29ee4df6b) */ +/* BINDTOOL_HEADER_FILE(phase_shift.h) */ +/* BINDTOOL_HEADER_FILE_HASH(1664568abb8b7440216e8565354ffd7f) */ /***********************************************************************************/ #include <pybind11/complex.h> diff --git a/gr-blocks/python/blocks/bindings/sample_and_hold_python.cc b/gr-blocks/python/blocks/bindings/sample_and_hold_python.cc index 10f328cb84..8d0b5da67e 100644 --- a/gr-blocks/python/blocks/bindings/sample_and_hold_python.cc +++ b/gr-blocks/python/blocks/bindings/sample_and_hold_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(sample_and_hold.h) */ -/* BINDTOOL_HEADER_FILE_HASH(e2112809d670e502f4b8621039111a9f) */ +/* BINDTOOL_HEADER_FILE(sample_and_hold.h) */ +/* BINDTOOL_HEADER_FILE_HASH(143913f78329444b1cdda20cbe1d7a7c) */ /***********************************************************************************/ #include <pybind11/complex.h> diff --git a/gr-blocks/python/blocks/bindings/threshold_ff_python.cc b/gr-blocks/python/blocks/bindings/threshold_ff_python.cc index adb47996af..95ec71aa7a 100644 --- a/gr-blocks/python/blocks/bindings/threshold_ff_python.cc +++ b/gr-blocks/python/blocks/bindings/threshold_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(threshold_ff.h) */ -/* BINDTOOL_HEADER_FILE_HASH(c84062668a3f19f25cfde9bd7b70e3ec) */ +/* BINDTOOL_HEADER_FILE(threshold_ff.h) */ +/* BINDTOOL_HEADER_FILE_HASH(50555a585be0d02b5c3eddc195f8b018) */ /***********************************************************************************/ #include <pybind11/complex.h> diff --git a/gr-blocks/python/blocks/qa_file_source.py b/gr-blocks/python/blocks/qa_file_source.py index 2055145ad6..57429f68ed 100644 --- a/gr-blocks/python/blocks/qa_file_source.py +++ b/gr-blocks/python/blocks/qa_file_source.py @@ -49,7 +49,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___") |