@@ -47,7 +47,7 @@ AbstractCommand::AbstractCommand(QObject * const parent) : QObject(parent),
47
47
48
48
/* !
49
49
* Returns a list of CLI option names required by this command. The main console appication may
50
- * use this list to output an eror (and exit) if any of the returned names are not found in the
50
+ * use this list to output an error (and exit) if any of the returned names are not found in the
51
51
* parsed CLI options.
52
52
*
53
53
* The (already parsed) \a parser may be used adjust the returned required options depending on the
@@ -141,7 +141,7 @@ template<typename R> constexpr Ratio makeRatio() { return Ratio{ R::num, R::den
141
141
* const quint32 timeout = parseNumber<std::milli>(parser.value("window"), 's', 500'000);
142
142
* ```
143
143
*
144
- * So that an unqalified period like "300" will be assumed to be 300 milliseconds, and not 300
144
+ * So that an unqualified period like "300" will be assumed to be 300 milliseconds, and not 300
145
145
* microseconds, while a period like "1000" will be assume to be 1 second.
146
146
*
147
147
* If conversion fails for any reason, 0 is returned.
@@ -246,7 +246,7 @@ DOKIT_INSTANTIATE_TEMPLATE_FUNCTION(std::atto);
246
246
*
247
247
* This base implementations performs some common checks, such as ensuring that required options are
248
248
* present. Derived classes should override this function to perform further processing, typically
249
- * inovking this base implementation as a first step, such as:
249
+ * invoking this base implementation as a first step, such as:
250
250
*
251
251
* ```
252
252
* QStringList CustomCommand::processOptions(const QCommandLineParser &parser)
@@ -339,7 +339,7 @@ QStringList AbstractCommand::processOptions(const QCommandLineParser &parser)
339
339
* \fn virtual void AbstractCommand::deviceDiscoveryFinished() = 0
340
340
*
341
341
* Handles PokitDiscoveryAgent::deviceDiscoveryFinished signal. Derived classes must
342
- * implement this slot to perform whatever actions are appropraite when discovery is finished.
342
+ * implement this slot to perform whatever actions are appropriate when discovery is finished.
343
343
* For example, the 'scan' command would simply exit, whereas most other commands would verify that
344
344
* an appropriate device was found.
345
345
*/
0 commit comments