summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlapinskijw <jlapinski.dev@gmail.com>2020-06-02 10:15:27 -0400
committerlapinskijw <jlapinski.dev@gmail.com>2020-06-02 10:15:27 -0400
commit3e2f4ef42fe95351939e683ddccdae2d6872f801 (patch)
tree437ffb04054e82d98141dad8cd846ca851ecb678
parentd6b5c41e29b86fd628ad00b36500fcfce05c80ec (diff)
downloadsdl_ios-bugfix/issue-1666-permission-manager-observer.tar.gz
fixed wording to make it more readablebugfix/issue-1666-permission-manager-observer
-rw-r--r--SmartDeviceLink/SDLPermissionManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLPermissionManager.h b/SmartDeviceLink/SDLPermissionManager.h
index 39bbc2595..6adfa7cf7 100644
--- a/SmartDeviceLink/SDLPermissionManager.h
+++ b/SmartDeviceLink/SDLPermissionManager.h
@@ -71,7 +71,7 @@ NS_ASSUME_NONNULL_BEGIN
* @warning The observer may be called before this method returns, do not attempt to remove the observer from within the observer. That could send `nil` to removeObserverForIdentifier:. If you want functionality like that, call groupStatusOfRPCs: instead.
*
* @param rpcNames The RPCs to be observed
- * @param groupType Affects the times that the observer block will be called. If Any, any change to any RPC in rpcNames will cause the observer block to be called. If AllAllowed, the block will be called when: 1. Immediately when the observer is set regardless of RPC status 2. Every RPC in rpcNames becomes allowed 3. The group of rpcNames goes from all being allowed to some or all being disallowed.
+ * @param groupType Affects the times that the observer block will be called. If Any, any change to any RPC in rpcNames will cause the observer block to be called. If AllAllowed, the block will be called when: 1. The observer is first set regardless of RPC status 2. Every RPC in rpcNames becomes allowed 3. The group of rpcNames goes from all being allowed to some or all being disallowed.
* @param handler The block that will be called whenever permissions change.
*
* @return An identifier that can be passed to removeObserverForIdentifer: to remove the observer