From 90f41bc2be9af323074b037535edfa19410470e7 Mon Sep 17 00:00:00 2001 From: Joel Fischer Date: Thu, 25 Feb 2021 16:26:32 -0500 Subject: Review fixes * Add SDLVehicleTypeSpec test for new init * Fix typo --- Example Apps/Example ObjC/ProxyManager.m | 3 +-- Example Apps/Example Swift/ProxyManager.swift | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'Example Apps') diff --git a/Example Apps/Example ObjC/ProxyManager.m b/Example Apps/Example ObjC/ProxyManager.m index 82a0165c1..9cb17a9e0 100644 --- a/Example Apps/Example ObjC/ProxyManager.m +++ b/Example Apps/Example ObjC/ProxyManager.m @@ -229,8 +229,7 @@ NS_ASSUME_NONNULL_BEGIN } #pragma mark - SDLManagerDelegate - -/// Called when the connection beween this app and the module has closed. +/// Called when the connection between this app and the module has closed. - (void)managerDidDisconnect { if (self.state != ProxyStateStopped) { [self sdlex_updateProxyState:ProxyStateSearchingForConnection]; diff --git a/Example Apps/Example Swift/ProxyManager.swift b/Example Apps/Example Swift/ProxyManager.swift index 5fb0fda22..6c04e57fa 100644 --- a/Example Apps/Example Swift/ProxyManager.swift +++ b/Example Apps/Example Swift/ProxyManager.swift @@ -147,7 +147,7 @@ private extension ProxyManager { extension ProxyManager: SDLManagerDelegate { /// Called when the connection between this app and the module has closed. - func managerDidDisconnect() { + func managerDidDisconnect() { if delegate?.proxyState != .some(.stopped) { delegate?.didChangeProxyState(ProxyState.searching) } -- cgit v1.2.1