Skip to content

Commit 11ec061

Browse files
luzpazmbr0wn
authored andcommittedFeb 8, 2021
Fix typos
Found via `codespell v2.1.dev0` `codespell -q 3 -L ans,fo,hist,inout,ist,ith,nd,sinc,uint -S ./volk` Signed-off-by: luz paz <[email protected]> Signed-off-by: Josh Morman <[email protected]>
1 parent 5287d09 commit 11ec061

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed
 

‎gnuradio-runtime/lib/terminate_handler.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ void terminate_handler_impl()
8888
std::cerr << "Got std::logic_error" << std::endl;
8989
std::cerr << e.what() << std::endl;
9090
} catch (const std::ios_base::failure& e) {
91-
std::cerr << "Got std::ios_base::falure" << std::endl;
91+
std::cerr << "Got std::ios_base::failure" << std::endl;
9292
std::cerr << e.what() << std::endl;
9393
} catch (const std::system_error& e) {
9494
std::cerr << "Got std::system_error" << std::endl;

‎gr-dtv/lib/dvbt/dvbt_reference_signals_impl.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ int dvbt_pilot_gen::get_current_tpilot() const { return d_tps_carriers[d_tpilot_
572572

573573
gr_complex dvbt_pilot_gen::get_tpilot_value(int tpilot)
574574
{
575-
// TODO - it can be calculated at the beginnning
575+
// TODO - it can be calculated at the beginning
576576
if (d_symbol_index == 0) {
577577
d_tps_carriers_val[d_tpilot_index] = gr_complex(2 * (0.5 - d_wk[tpilot]), 0);
578578
} else {

‎gr-fft/include/gnuradio/fft/window.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class FFT_API window
7272
* is a good bound.
7373
*
7474
* The Gaussian window should not be used for window based filter construction;
75-
* instead there is a dedicated gaussian filter construction fuction. There is no
75+
* instead there is a dedicated gaussian filter construction function. There is no
7676
* meaningful way to measure approximation error 'delta' as shown in Fig 7.23 of
7777
* Oppenheim and Schafer (Discrete-Time Signal Processing, 3rd edition).
7878
*

‎gr-fft/lib/window.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ double window::max_attenuation(win_type type, double param)
8787
// value not meaningful for gaussian windows, but return something reasonable
8888
return 100;
8989
case WIN_TUKEY:
90-
// low end is a rectangular window, attenuation exponentialy approaches Hann
90+
// low end is a rectangular window, attenuation exponentially approaches Hann
9191
// piecewise linear estimate, determined empirically via curve fitting, median
9292
// error is less than 0.5dB and maximum error is 2.5dB; the returned value will
9393
// never be less than expected attenuation to ensure that window designed filters

‎gr-fft/python/fft/bindings/window_python.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/* BINDTOOL_GEN_AUTOMATIC(0) */
1515
/* BINDTOOL_USE_PYGCCXML(0) */
1616
/* BINDTOOL_HEADER_FILE(window.h) */
17-
/* BINDTOOL_HEADER_FILE_HASH(4de3c97757728a4acfbd8b1c29181431) */
17+
/* BINDTOOL_HEADER_FILE_HASH(872e1911444c9a5982f4d00af81a2def) */
1818
/***********************************************************************************/
1919

2020
#include <pybind11/complex.h>

‎gr-filter/lib/pm_remez.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ static void freq_sample(int N, double A[], double h[], int symm)
536536
*
537537
* INPUT:
538538
* ------
539-
* int r - 1/2 the number of filter coeffiecients
539+
* int r - 1/2 the number of filter coefficients
540540
* int Ext[] - Indexes to extremal frequencies [r+1]
541541
* double E[] - Error function on the dense grid [gridsize]
542542
*

‎gr-qtgui/grc/qtgui_check_box.block.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ templates:
5858
documentation: |-
5959
This block creates a variable check box. Leave the label blank to use the variable id as the label.
6060
61-
A check box selects between two values of similar type. Te values do not necessarily need to be of boolean type.
61+
A check box selects between two values of similar type. The values do not necessarily need to be of boolean type.
6262
6363
The GUI hint can be used to position the widget within the application. The hint is of the form [tab_id@tab_index]: [row, col, row_span, col_span]. Both the tab specification and the grid position are optional.
6464

‎gr-qtgui/include/gnuradio/qtgui/plot_raster.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class QwtColorMap;
2727
* \ingroup qtgui_blk
2828
*
2929
* \details
30-
* A time raster displays three-dimenional data, where the 3rd dimension
30+
* A time raster displays three-dimensional data, where the 3rd dimension
3131
* (the intensity) is displayed using colors. The colors are calculated
3232
* from the values using a color map.
3333
*

‎gr-qtgui/include/gnuradio/qtgui/plot_waterfall.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class QwtColorMap;
2727
* \ingroup qtgui_blk
2828
*
2929
* \details
30-
* A waterfall displays three-dimenional data, where the 3rd dimension
30+
* A waterfall displays three-dimensional data, where the 3rd dimension
3131
* (the intensity) is displayed using colors. The colors are calculated
3232
* from the values using a color map.
3333
*

‎gr-trellis/docs/test_viterbi_equalization1.py.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
27
3030
28 # CHANNEL
3131
29 isi = filter.fir_filter_fff(1,channel)
32-
30 add = blocs.add_ff()
32+
30 add = blocks.add_ff()
3333
31 noise = analog.noise_source_f(analog.GR_GAUSSIAN,math.sqrt(N0/2),seed)
3434
32
3535
33 # RX

‎gr-uhd/docs/uhd.dox

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ The object is of type pmt::dict and has the same fields as uhd::tune_request_t:
118118
- `dsp_freq_policy`: policy for DSP tuning. Should be a string "A" (automatic), "M" (manual) or "N" (none). If not set, defaults to "A".
119119
- `rf_freq`: the rf frequency as pmt double type.
120120
- `rf_freq_policy`: policy for RF tuning. Should be a string "A" (automatic), "M" (manual) or "N" (none). If not set, defaults to "A".
121-
- `target_freq`: target frequency (for automatic runing) as pmt double type
121+
- `target_freq`: target frequency (for automatic running) as pmt double type
122122
- `args`: string containing additional arguments, for example for integer N tuning.
123123

124124
Example:

‎grc/gui/Application.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ def flow_graph_update(fg=flow_graph):
723723
Dialogs.show_missing_xterm(main, xterm)
724724
self.config.xterm_missing(xterm)
725725
if page.saved and page.file_path:
726-
# Save config before exection
726+
# Save config before execution
727727
self.config.save()
728728
Executor.ExecFlowGraphThread(
729729
flow_graph_page=page,

‎grc/tests/resources/file3.block.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ templates:
5959
documentation: |-
6060
This block creates a variable check box. Leave the label blank to use the variable id as the label.
6161
62-
A check box selects between two values of similar type. Te values do not necessarily need to be of boolean type.
62+
A check box selects between two values of similar type. The values do not necessarily need to be of boolean type.
6363
6464
The GUI hint can be used to position the widget within the application. The hint is of the form [tab_id@tab_index]: [row, col, row_span, col_span]. Both the tab specification and the grid position are optional.
6565

0 commit comments

Comments
 (0)