Skip to content

Commit

Permalink
Merge pull request #1329 from luzpaz/typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
argilo committed Dec 24, 2023
2 parents 18f3ab3 + ce1d6a6 commit 2c2a8e5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion resources/news.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/applications/gqrx/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/applications/gqrx/receiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion src/qtgui/ioconfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion src/qtgui/ioconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace Ui {
class CIoConfig;
}

/** @brief Inout/output device configurator. */
/** @brief Input/output device configurator. */
class CIoConfig : public QDialog
{
Q_OBJECT
Expand Down

0 comments on commit 2c2a8e5

Please sign in to comment.