Skip to content

Commit 1ede482

Browse files
committed
Fix typos
Fixed with: perl -pe "s/Descripion/Description/" -i src/demod*.c codespell -w src/symbols.c
1 parent d11bd6f commit 1ede482

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Diff for: src/demod.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ int demod_get_sample (int a)
906906
*
907907
* Returns: None
908908
*
909-
* Descripion: We start off with two bandpass filters tuned to
909+
* Description: We start off with two bandpass filters tuned to
910910
* the given frequencies. In the case of VHF packet
911911
* radio, this would be 1200 and 2200 Hz.
912912
*

Diff for: src/demod_9600.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ void demod_9600_init (enum modem_t modem_type, int original_sample_rate, int ups
336336
*
337337
* Returns: None
338338
*
339-
* Descripion: "9600 baud" packet is FSK for an FM voice transceiver.
339+
* Description: "9600 baud" packet is FSK for an FM voice transceiver.
340340
* By the time it gets here, it's really a baseband signal.
341341
* At one extreme, we could have a 4800 Hz square wave.
342342
* A the other extreme, we could go a considerable number

Diff for: src/demod_afsk.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ void demod_afsk_init (int samples_per_sec, int baud, int mark_freq,
532532
*
533533
* Returns: None
534534
*
535-
* Descripion: First demodulate the AFSK signal.
535+
* Description: First demodulate the AFSK signal.
536536
*
537537
* A digital phase locked loop (PLL) recovers the symbol
538538
* clock and picks out data bits at the proper rate.

Diff for: src/demod_psk.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ static inline int phase_shift_to_symbol (float phase_shift, int bits_per_symbol,
624624
*
625625
* Returns: None
626626
*
627-
* Descripion: All the literature, that I could find, described mixing
627+
* Description: All the literature, that I could find, described mixing
628628
* with a local oscillator. First we multiply the input by
629629
* cos and sin then low pass filter each. This gives us
630630
* correlation to the different phases. The signs of these two

Diff for: src/symbols.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ void symbols_from_dest_or_src (char dti, char *src, char *dest, char *symtab, ch
681681

682682
// The position and object formats all contain a proper symbol and table.
683683
// There doesn't seem to be much reason to have a symbol for something without
684-
// a postion because it would not show up on a map.
684+
// a position because it would not show up on a map.
685685
// This just seems to be a remnant of something used long ago and no longer needed.
686686
// The protocol spec mentions a "MIM tracker" but I can't find any references to it.
687687

0 commit comments

Comments
 (0)