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..742fb1f12fdd 100644 --- a/ios/PacketTunnelCore/IPC/PacketTunnelOptions.swift +++ b/ios/PacketTunnelCore/IPC/PacketTunnelOptions.swift @@ -11,12 +11,11 @@ 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" - /// Option key that holds the `NSNumber` value, which is when set to `1` indicates that - /// the tunnel was started by the system. + /// Option key that holds an `NSNumber` value, which is when set to `1` indicates that the tunnel was started by the system. /// System automatically provides that flag to the tunnel. case isOnDemand = "is-on-demand" }