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-utils/blocktool/core/parseheader_generic.py | |
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-utils/blocktool/core/parseheader_generic.py')
-rw-r--r-- | gr-utils/blocktool/core/parseheader_generic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-utils/blocktool/core/parseheader_generic.py b/gr-utils/blocktool/core/parseheader_generic.py index b166516b21..e42142d36b 100644 --- a/gr-utils/blocktool/core/parseheader_generic.py +++ b/gr-utils/blocktool/core/parseheader_generic.py @@ -42,7 +42,7 @@ class GenericHeaderParser(BlockTool): : returns the parsed header data in python dict : return dict keys: namespace, class, io_signature, make, properties, methods - : Can be used as an CLI command or an extenal API + : Can be used as an CLI command or an external API """ name = 'Block Parse Header' description = 'Create a parsed output from a block header file' @@ -268,7 +268,7 @@ class GenericHeaderParser(BlockTool): : returns the parsed header data in python dict : return dict keys: namespace, class, io_signature, make, properties, methods - : Can be used as an CLI command or an extenal API + : Can be used as an CLI command or an external API """ module = self.modname.split('-')[-1] self.parsed_data['module_name'] = module |