diff options
author | Solomon Tan <solomonbstoner@yahoo.com.au> | 2021-05-18 21:47:48 +0800 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-05-19 10:51:37 -0400 |
commit | be3c6c930896e2a927f05fbafcba4e91ffc605b0 (patch) | |
tree | 371ddec40ae127ca8f3f601e76efbf9475ff3cd6 /grc | |
parent | b6851218337aca35ace7e9fe80b92a942b7a5c27 (diff) |
gr-blocks: Standardize Vector parameter name
Addresses point 1 of Issue #4615. Replaces all label instances of "Vec
Length" to "Vector Length". Also replaces "Vec Rate" to "Vector Rate"
for standardization.
Signed-off-by: Solomon Tan <solomonbstoner@yahoo.com.au>
Diffstat (limited to 'grc')
-rw-r--r-- | grc/blocks/pad_sink.block.yml | 2 | ||||
-rw-r--r-- | grc/blocks/pad_source.block.yml | 2 | ||||
-rw-r--r-- | grc/tests/resources/file1.block.yml | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/grc/blocks/pad_sink.block.yml b/grc/blocks/pad_sink.block.yml index b0a93ee24f..88c267651d 100644 --- a/grc/blocks/pad_sink.block.yml +++ b/grc/blocks/pad_sink.block.yml @@ -19,7 +19,7 @@ parameters: sizeof(char), sizeof(char), '0', '0'] hide: part - id: vlen - label: Vec Length + label: Vector Length dtype: int default: '1' hide: ${ 'part' if vlen == 1 else 'none' } diff --git a/grc/blocks/pad_source.block.yml b/grc/blocks/pad_source.block.yml index 0377e6fb1f..2025c0c34c 100644 --- a/grc/blocks/pad_source.block.yml +++ b/grc/blocks/pad_source.block.yml @@ -19,7 +19,7 @@ parameters: sizeof(char), sizeof(char), '0', '0'] hide: part - id: vlen - label: Vec Length + label: Vector Length dtype: int default: '1' hide: ${ 'part' if vlen == 1 else 'none' } diff --git a/grc/tests/resources/file1.block.yml b/grc/tests/resources/file1.block.yml index f486c89ea8..ee858f7a86 100644 --- a/grc/tests/resources/file1.block.yml +++ b/grc/tests/resources/file1.block.yml @@ -3,13 +3,13 @@ label: testname parameters: - id: vlen - label: Vec Length + label: Vector Length category: test dtype: int default: '1' hide: ${ 'part' if vlen == 1 else 'none' } - id: out_type - label: Vec Length + label: Vector Length dtype: string default: complex hide: part |