diff options
author | Jeff Long <willcode4@gmail.com> | 2021-07-25 20:32:58 -0400 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-07-27 10:08:04 -0400 |
commit | 7a9f2f5ce7071f7863d615143a2568e5b892e250 (patch) | |
tree | b2879b0859d7bc5a0fda01103e51516738be7f42 /gr-analog | |
parent | 11255ca436e6e3eff56fcc995e1b72cff289c90b (diff) |
c++ generation: escape "." in translations
Translations are a regex, so "." needs to be escaped. Fix the
remaining unescaped strings.
Signed-off-by: Jeff Long <willcode4@gmail.com>
Diffstat (limited to 'gr-analog')
-rw-r--r-- | gr-analog/grc/analog_fastnoise_source_x.block.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-analog/grc/analog_fastnoise_source_x.block.yml b/gr-analog/grc/analog_fastnoise_source_x.block.yml index 5230cb62f7..a685e50388 100644 --- a/gr-analog/grc/analog_fastnoise_source_x.block.yml +++ b/gr-analog/grc/analog_fastnoise_source_x.block.yml @@ -48,7 +48,7 @@ cpp_templates: - set_amplitude(${amp}) link: ['gnuradio::gnuradio-analog'] translations: - analog.: 'analog::' + analog\.: 'analog::' documentation: |- The fast noise source works by pre-generating a pool of random variates taken from the specified distribution. At runtime, samples are then uniform randomly chosen from this pool which is a very fast operation. |