Skip to content

Commit 1e23920

Browse files
committed
Edit typos
1 parent 32815cb commit 1e23920

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

eeprom_programmer_PC/app.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ void App::setCommandLineOptions(QCommandLineParser& parser)
4747
{
4848
App::setApplicationName("EEPROM Tool");
4949
App::setApplicationVersion("1.0");
50-
parser.setApplicationDescription("Read and write from supported EEPROM memorys.");
50+
parser.setApplicationDescription("Read and write from supported EEPROM memories.");
5151

5252
parser.addHelpOption();
5353
parser.addVersionOption();
@@ -93,7 +93,7 @@ bool App::configure() {
9393
return false;
9494
}
9595
if(args.size() < 1) {
96-
m_standardOutput << "Error: you must select the memory target." << Qt::endl;
96+
m_standardOutput << "You must select the memory target." << Qt::endl;
9797
m_standardOutput << parser.helpText() << Qt::endl;
9898
return false;
9999
}

eeprom_programmer_PC/serialportreader.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class SerialPortReader : public QObject
2121

2222
public:
2323
SerialPortReader(QSerialPort *serialPort, QObject *parent = nullptr);
24-
virtual ~SerialPortReader() {m_standardOutput << "Datos recibidos: "
24+
virtual ~SerialPortReader() {m_standardOutput << "Data received: "
2525
<< getRecibidos() << Qt::endl; }
2626

2727
inline qint64 getRecibidos() const {return m_recibidos;}

eeprom_programmer_PC/serialportwriter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class SerialPortWriter : public QObject
1616
Q_OBJECT
1717
public:
1818
explicit SerialPortWriter(QSerialPort *serialPort, QObject *parent = nullptr);
19-
virtual ~SerialPortWriter() {m_standardOutput << "Datos enviados: "
19+
virtual ~SerialPortWriter() {m_standardOutput << "Data sent: "
2020
<< enviados << Qt::endl; }
2121
void write(const QByteArray &writeData);
2222
void write(const char *writeData, qint64 len);

0 commit comments

Comments
 (0)