Skip to content

Commit 3f7dcab

Browse files
committed
LP-567 telemetry: fix typo in comments
1 parent 5c746fb commit 3f7dcab

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

ground/gcs/src/plugins/uavtalk/telemetry.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Telemetry::~Telemetry()
7979
closeAllTransactions();
8080
foreach(QList<UAVObject *> instances, objMngr->getObjects()) {
8181
foreach(UAVObject * object, instances) {
82-
// make sure we 'forget' all objects before we request it from the flight side
82+
// 'forget' all objects
8383
object->setIsKnown(false);
8484
}
8585
}
@@ -244,9 +244,8 @@ void Telemetry::transactionCompleted(UAVObject *obj, bool success)
244244

245245
if (transInfo) {
246246
if (success) {
247-
// We now know tat the flight side knows of this object.
247+
// We now know that the flight side knows of this object.
248248
obj->setIsKnown(true);
249-
250249
#ifdef VERBOSE_TELEMETRY
251250
qDebug() << "Telemetry - transaction successful for object" << obj->toStringBrief();
252251
#endif

0 commit comments

Comments
 (0)