From 7ecc4c7034b5573bf3fc0660dcdd62e652b3414b Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Tue, 31 Jan 2023 11:10:09 +1300 Subject: [PATCH] Cleanup: Fix typos in comments. Fixed some typos in comments. Separated from #3568 as per https://github.com/subsurface/subsurface/pull/3568#pullrequestreview-1274995287. Signed-off-by: Michael Keller --- desktop-widgets/configuredivecomputerdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop-widgets/configuredivecomputerdialog.cpp b/desktop-widgets/configuredivecomputerdialog.cpp index be0902fdb..5ade45b7e 100644 --- a/desktop-widgets/configuredivecomputerdialog.cpp +++ b/desktop-widgets/configuredivecomputerdialog.cpp @@ -264,7 +264,7 @@ void OstcFirmwareCheck::checkLatest(QWidget *_parent, device_data_t *data) { devData = *data; parent = _parent; - // If we didn't find a current firmware version stop this hole thing here. + // If we didn't find a current firmware version stop this whole thing here. if (latestFirmwareAvailable.isEmpty()) return; @@ -274,7 +274,7 @@ void OstcFirmwareCheck::checkLatest(QWidget *_parent, device_data_t *data) int firmwareOnDevice = devData.devinfo.firmware; QString firmwareOnDeviceString; - // Convert the latestFirmwareAvailable to a integear we can compare with + // Convert the latestFirmwareAvailable to a integer we can compare with QStringList fwParts = latestFirmwareAvailable.split("."); int latestFirmwareAvailableNumber;