summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-04-14 15:32:55 -0400
committerNicoleYarroch <nicole@livio.io>2020-04-14 15:32:55 -0400
commit1df5c828ae73b94cbc2bbc99f021f9609945b132 (patch)
tree73d421c835689162832a821ba5894f4cdd2739e1
parentf1ae84e0ad04a9a018f4c460ca89130fddeafad9 (diff)
downloadsdl_ios-1df5c828ae73b94cbc2bbc99f021f9609945b132.tar.gz
-rw-r--r--SmartDeviceLink/SDLBackgroundTaskManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLBackgroundTaskManager.h b/SmartDeviceLink/SDLBackgroundTaskManager.h
index 7d308b842..8d9f18ad1 100644
--- a/SmartDeviceLink/SDLBackgroundTaskManager.h
+++ b/SmartDeviceLink/SDLBackgroundTaskManager.h
@@ -17,7 +17,7 @@ NS_ASSUME_NONNULL_BEGIN
@interface SDLBackgroundTaskManager : NSObject
/// Handler called when the background task is about to expire. Use this handler to perform some cleanup before the background task is destroyed. When you have finished cleanup, you must call the `endBackgroundTask` function so the background task can be destroyed. If you do not call `endBackgroundTask`, the system may kill the app.
-/// @return Whether or to wait for the subscriber to cleanup. If NO, the background task will be killed immediately. If YES, the background task will not be destroyed until the `endBackgroundTask` method is called.
+/// @return Whether or not to wait for the subscriber to cleanup. If NO, the background task will be killed immediately. If YES, the background task will not be destroyed until the `endBackgroundTask` method is called by the subscriber.
@property (copy, nonatomic, nullable) BOOL (^taskExpiringHandler)(void);
- (instancetype)init NS_UNAVAILABLE;