Merge pull request #1329 from luzpaz/typos

Fix typos
This commit is contained in:
Clayton Smith 2023-12-23 20:37:37 -05:00 committed by GitHub
commit 2c2a8e5fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@
NEW: Min hold line in plot.
NEW: A/B measurement markers on plot.
NEW: Plot tooltip displays delta from demod frequency.
NEW: Dropped frames are indicated by red background in FFT Settigns panel.
NEW: Dropped frames are indicated by red background in FFT Settings panel.
NEW: "Avg" waterfall mode, which displays average of FFT bins.
NEW: "Sync" waterfall mode, which mirrors averaged data from plot.
NEW: Support for RTL-SDR Blog V4 in AppImage and DMG releases.

View File

@ -1328,7 +1328,7 @@ void MainWindow::setFmMaxdev(float max_dev)
/**
* @brief New FM de-emphasis time consant selected.
* @brief New FM de-emphasis time constant selected.
* @param tau The new time constant
*/
void MainWindow::setFmEmph(double tau)

View File

@ -1082,7 +1082,7 @@ receiver::status receiver::stop_audio_recording()
// Temporary workaround for https://github.com/gnuradio/gnuradio/issues/5436
tb->disconnect(ddc, 0, rx, 0);
tb->connect(ddc, 0, rx, 0);
// End temporary workaronud
// End temporary workaround
tb->unlock();
wav_gain0.reset();
@ -1314,7 +1314,7 @@ receiver::status receiver::stop_sniffer()
// Temporary workaround for https://github.com/gnuradio/gnuradio/issues/5436
tb->disconnect(ddc, 0, rx, 0);
tb->connect(ddc, 0, rx, 0);
// End temporary workaronud
// End temporary workaround
tb->disconnect(sniffer_rr, 0, sniffer, 0);
tb->unlock();

View File

@ -707,7 +707,7 @@ void CIoConfig::inputDeviceSelected(int index)
*
* This slot is activated when the device string in the text edit box has changed
* either by the user or programmatically. We use this to enable/disable the OK
* button - we allo OK only if there is some text in the text entry.
* button - we allow OK only if there is some text in the text entry.
*/
void CIoConfig::inputDevstrChanged(const QString &text)
{

View File

@ -40,7 +40,7 @@ namespace Ui {
class CIoConfig;
}
/** @brief Inout/output device configurator. */
/** @brief Input/output device configurator. */
class CIoConfig : public QDialog
{
Q_OBJECT