summaryrefslogtreecommitdiff
path: root/gr-digital/lib
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2021-02-12 12:47:01 -0700
committerMartin Braun <martin@gnuradio.org>2021-02-12 13:38:36 -0800
commitf4dd865e2a72c60515efa81bd49521a4365e6ce7 (patch)
tree865f073c7981a2a7559ea8cada0d2be7471b366d /gr-digital/lib
parent369cec2383df5f4d18c0be8bd26ed7ad553ada0a (diff)
gr-digital: Fix errors in logging messages
"Interpolations" was misspelled. Also, there was a missing space after the word "symbol". Signed-off-by: Zackery Spytz <zspytz@gmail.com>
Diffstat (limited to 'gr-digital/lib')
-rw-r--r--gr-digital/lib/symbol_sync_cc_impl.cc4
-rw-r--r--gr-digital/lib/symbol_sync_ff_impl.cc4
2 files changed, 4 insertions, 4 deletions
diff --git a/gr-digital/lib/symbol_sync_cc_impl.cc b/gr-digital/lib/symbol_sync_cc_impl.cc
index 9a24cfbbf6..4762c5b62f 100644
--- a/gr-digital/lib/symbol_sync_cc_impl.cc
+++ b/gr-digital/lib/symbol_sync_cc_impl.cc
@@ -112,8 +112,8 @@ symbol_sync_cc_impl::symbol_sync_cc_impl(enum ted_type detector_type,
if (d_interps_per_symbol > sps)
GR_LOG_WARN(d_logger,
- boost::format("block performing more interopolations per "
- "symbol (%3f) than input samples per symbol"
+ boost::format("block performing more interpolations per "
+ "symbol (%3f) than input samples per symbol "
"(%3f). Consider reducing osps or "
"increasing sps") %
d_interps_per_symbol % sps);
diff --git a/gr-digital/lib/symbol_sync_ff_impl.cc b/gr-digital/lib/symbol_sync_ff_impl.cc
index 1df9a437c4..b6aebd5d6c 100644
--- a/gr-digital/lib/symbol_sync_ff_impl.cc
+++ b/gr-digital/lib/symbol_sync_ff_impl.cc
@@ -113,8 +113,8 @@ symbol_sync_ff_impl::symbol_sync_ff_impl(enum ted_type detector_type,
if (d_interps_per_symbol > sps)
GR_LOG_WARN(d_logger,
- boost::format("block performing more interopolations per "
- "symbol (%3f) than input samples per symbol"
+ boost::format("block performing more interpolations per "
+ "symbol (%3f) than input samples per symbol "
"(%3f). Consider reducing osps or "
"increasing sps") %
d_interps_per_symbol % sps);