From d9816232cfe8884047eb28cceeae7124f62a40e7 Mon Sep 17 00:00:00 2001 From: axunes Date: Thu, 2 Apr 2026 11:05:23 -0400 Subject: [PATCH] fix typo in hop limit option description (#1631) O hop -> 0 hop Co-authored-by: garthvh <1795163+garthvh@users.noreply.github.com> --- Localizable.xcstrings | 2 +- Meshtastic/Views/Settings/Config/LoRaConfig.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Localizable.xcstrings b/Localizable.xcstrings index 1083039f..948176b5 100644 --- a/Localizable.xcstrings +++ b/Localizable.xcstrings @@ -49247,7 +49247,7 @@ } } }, - "Sets the maximum number of hops, default is 3. Increasing hops also increases congestion and should be used carefully. O hop broadcast messages will not get ACKs." : { + "Sets the maximum number of hops, default is 3. Increasing hops also increases congestion and should be used carefully. 0 hop broadcast messages will not get ACKs." : { "localizations" : { "da" : { "stringUnit" : { diff --git a/Meshtastic/Views/Settings/Config/LoRaConfig.swift b/Meshtastic/Views/Settings/Config/LoRaConfig.swift index 87562617..17e18dc7 100644 --- a/Meshtastic/Views/Settings/Config/LoRaConfig.swift +++ b/Meshtastic/Views/Settings/Config/LoRaConfig.swift @@ -142,7 +142,7 @@ struct LoRaConfig: View { .tag($0) } } - Text("Sets the maximum number of hops, default is 3. Increasing hops also increases congestion and should be used carefully. O hop broadcast messages will not get ACKs.") + Text("Sets the maximum number of hops, default is 3. Increasing hops also increases congestion and should be used carefully. 0 hop broadcast messages will not get ACKs.") .foregroundColor(.gray) .font(.callout) }