summaryrefslogtreecommitdiff
path: root/Example Apps
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2021-02-25 16:26:32 -0500
committerJoel Fischer <joeljfischer@gmail.com>2021-02-25 16:26:32 -0500
commit90f41bc2be9af323074b037535edfa19410470e7 (patch)
tree51af5d474588833d0f50df151a6982e253c5674e /Example Apps
parent54cb8a68010abd244b8251f9dcfb1c8f326610c0 (diff)
downloadsdl_ios-90f41bc2be9af323074b037535edfa19410470e7.tar.gz
* Add SDLVehicleTypeSpec test for new init * Fix typo
Diffstat (limited to 'Example Apps')
-rw-r--r--Example Apps/Example ObjC/ProxyManager.m3
-rw-r--r--Example Apps/Example Swift/ProxyManager.swift2
2 files changed, 2 insertions, 3 deletions
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)
}