summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2020-07-21 18:29:34 +0300
committerAndrej Mihajlov <and@mullvad.net>2020-07-22 18:35:43 +0300
commit646001fbd96e7955a3d672357c42bc398a91c241 (patch)
tree0fc6fb309656c5eac906434117ebd2f04445e42e
parent4919a47b708ea16bdf408706bbdd3daed83c17a0 (diff)
downloadmullvadvpn-646001fbd96e7955a3d672357c42bc398a91c241.tar.xz
mullvadvpn-646001fbd96e7955a3d672357c42bc398a91c241.zip
Fix typo in UserInteractionRestriction.Action
-rw-r--r--ios/MullvadVPN/UserInterfaceInteractionRestriction.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/UserInterfaceInteractionRestriction.swift b/ios/MullvadVPN/UserInterfaceInteractionRestriction.swift
index 865dc29366..2a07132c09 100644
--- a/ios/MullvadVPN/UserInterfaceInteractionRestriction.swift
+++ b/ios/MullvadVPN/UserInterfaceInteractionRestriction.swift
@@ -20,7 +20,7 @@ protocol UserInterfaceInteractionRestrictionProtocol {
/// A counter based user interface interaction restriction implementation
class UserInterfaceInteractionRestriction: UserInterfaceInteractionRestrictionProtocol
{
- typealias Action = (_ disableUserInteraction: Bool, _ animated: Bool) -> Void
+ typealias Action = (_ enableUserInteraction: Bool, _ animated: Bool) -> Void
private let action: Action
private var counter: UInt = 0