From c250eef963bf2d2b14ba6c067f89bc154f5f1995 Mon Sep 17 00:00:00 2001 From: Arnaud Dorgans Date: Wed, 16 May 2018 15:21:10 +0200 Subject: [PATCH] Fix RemoteConfig ActivateFetched --- Sources/RemoteConfig/RemoteConfig+Rx.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/RemoteConfig/RemoteConfig+Rx.swift b/Sources/RemoteConfig/RemoteConfig+Rx.swift index e493cc1..66d92a3 100644 --- a/Sources/RemoteConfig/RemoteConfig+Rx.swift +++ b/Sources/RemoteConfig/RemoteConfig+Rx.swift @@ -13,6 +13,7 @@ extension Reactive where Base: RemoteConfig { /// Fetches Remote Config data with a callback. Call activateFetched to make fetched data available /// to your app. + /// @param activateFetched Make fetched data available to your app. /// @param completionHandler Fetch operation callback. public func fetch(activateFetched: Bool = false) -> Observable { return Observable.create { observer in @@ -32,9 +33,9 @@ extension Reactive where Base: RemoteConfig { } /// Fetches Remote Config data and sets a duration that specifies how long config data lasts. - /// Call activateFetched to make fetched data available to your app. /// @param expirationDuration Duration that defines how long fetched config data is available, in /// seconds. When the config data expires, a new fetch is required. + /// @param activateFetched Make fetched data available to your app. /// @param completionHandler Fetch operation callback. public func fetch(withExpirationDuration duration: TimeInterval, activateFetched: Bool = false) -> Observable { return Observable.create { observer in