From f4c8b206db8f2dfb9a1737ecfac58d7065907f1d Mon Sep 17 00:00:00 2001 From: Ariel Demarco Date: Tue, 26 Nov 2024 11:14:14 -0300 Subject: [PATCH] Fix typos --- .../EmbraceConfigurable/RemoteConfig/RemoteConfigFetcher.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/EmbraceConfigInternal/EmbraceConfigurable/RemoteConfig/RemoteConfigFetcher.swift b/Sources/EmbraceConfigInternal/EmbraceConfigurable/RemoteConfig/RemoteConfigFetcher.swift index 63b4df1b..abfc27d6 100644 --- a/Sources/EmbraceConfigInternal/EmbraceConfigurable/RemoteConfig/RemoteConfigFetcher.swift +++ b/Sources/EmbraceConfigInternal/EmbraceConfigurable/RemoteConfig/RemoteConfigFetcher.swift @@ -62,7 +62,7 @@ class RemoteConfigFetcher { completion(payload) } catch { self?.logger.error("Error decoding remote config:\n\(error.localizedDescription)") - // If it's a decoding issue, rather than returnin `nil`, we provide the default `RemoteConfigPayload`. + // if a decoding issue happens, instead of returning `nil`, we provide a default `RemoteConfigPayload` completion(RemoteConfigPayload()) } }