From 8e259a2b8fa36071f00c4e383d1e1b90dbb15e64 Mon Sep 17 00:00:00 2001 From: Andrej Mihajlov Date: Tue, 10 Oct 2023 14:52:54 +0200 Subject: [PATCH] Fix comments --- ios/MullvadVPN/TunnelManager/Tunnel+Messaging.swift | 1 - ios/PacketTunnelCore/IPC/PacketTunnelOptions.swift | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/ios/MullvadVPN/TunnelManager/Tunnel+Messaging.swift b/ios/MullvadVPN/TunnelManager/Tunnel+Messaging.swift index d40136159646..0eb06130d82d 100644 --- a/ios/MullvadVPN/TunnelManager/Tunnel+Messaging.swift +++ b/ios/MullvadVPN/TunnelManager/Tunnel+Messaging.swift @@ -24,7 +24,6 @@ private let proxyRequestTimeout = REST.defaultAPINetworkTimeout + 2 extension Tunnel { /// Request packet tunnel process to reconnect the tunnel with the given relay. - /// Packet tunnel will reconnect to the current relay if relay is not provided. func reconnectTunnel( to nextRelay: NextRelay, completionHandler: @escaping (Result) -> Void diff --git a/ios/PacketTunnelCore/IPC/PacketTunnelOptions.swift b/ios/PacketTunnelCore/IPC/PacketTunnelOptions.swift index bc46ad218963..e0a1120569af 100644 --- a/ios/PacketTunnelCore/IPC/PacketTunnelOptions.swift +++ b/ios/PacketTunnelCore/IPC/PacketTunnelOptions.swift @@ -11,7 +11,7 @@ import Foundation public struct PacketTunnelOptions { /// Keys for options dictionary private enum Keys: String { - /// Option key that holds serialized`SelectedRelay` value encoded using `JSONEncoder`. + /// Option key that holds serialized `SelectedRelay` value encoded using `JSONEncoder`. /// Used for passing the pre-selected relay in the GUI process to the Packet tunnel process. case selectedRelay = "selected-relay"