From b1ad0896844e848c2495e09a6e5c3548685adedd Mon Sep 17 00:00:00 2001 From: Kevin M <96758143+ksm-dg@users.noreply.github.com> Date: Sun, 24 Nov 2024 03:18:52 -0500 Subject: [PATCH] Minor typo fixes (#1027) --- plotjuggler_plugins/DataStreamMQTT/mqtt_dialog.cpp | 2 +- plotjuggler_plugins/ParserProtobuf/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plotjuggler_plugins/DataStreamMQTT/mqtt_dialog.cpp b/plotjuggler_plugins/DataStreamMQTT/mqtt_dialog.cpp index 81b2038cb..c4e6644ce 100644 --- a/plotjuggler_plugins/DataStreamMQTT/mqtt_dialog.cpp +++ b/plotjuggler_plugins/DataStreamMQTT/mqtt_dialog.cpp @@ -118,7 +118,7 @@ MQTT_Dialog::MQTT_Dialog(MQTTClient::Ptr mosq_client) connect(_client.get(), &MQTTClient::disconnected, this, [this]() { onConnectionClosed(); QMessageBox::warning(this, "Connection Lost", - "Client disconnected. Maybe a problem with autentication?"); + "Client disconnected. Maybe a problem with authentication?"); }); } diff --git a/plotjuggler_plugins/ParserProtobuf/CMakeLists.txt b/plotjuggler_plugins/ParserProtobuf/CMakeLists.txt index f399fdad9..588c69ba8 100644 --- a/plotjuggler_plugins/ParserProtobuf/CMakeLists.txt +++ b/plotjuggler_plugins/ParserProtobuf/CMakeLists.txt @@ -42,5 +42,5 @@ if( Protobuf_FOUND) install(TARGETS ProtobufParser DESTINATION ${PJ_PLUGIN_INSTALL_DIRECTORY} ) else() - message("[Protobuf] not found: skipping compilatiopn of plugin ProtobufParser") + message("[Protobuf] not found: skipping compilation of plugin ProtobufParser") endif()