summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-07-24 09:59:06 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-07-24 09:59:06 -0400
commitd362caf5a7c1cac6785d1e6ab7c7335466fa603b (patch)
treebea6b66f3c3d4fec1d74eea643b461403460deb7
parent287c289ae48afb00faacd439dbe56a011b2a6c4b (diff)
downloadsdl_ios-d362caf5a7c1cac6785d1e6ab7c7335466fa603b.tar.gz
Update all of the documentation
-rw-r--r--SmartDeviceLink/SDLPermissionConstants.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLPermissionConstants.h b/SmartDeviceLink/SDLPermissionConstants.h
index aa635b3c0..8c7c1f0da 100644
--- a/SmartDeviceLink/SDLPermissionConstants.h
+++ b/SmartDeviceLink/SDLPermissionConstants.h
@@ -64,7 +64,7 @@ typedef NS_ENUM(NSUInteger, SDLPermissionGroupStatus) {
/**
* This is a block that is passed in to some methods that will be stored and called when specified permissions change.
*
- * @param updatedPermissionStatuses A dictionary of the new current status of all subscription items containing <key(String): RPC Name, object(BOOL): YES if the RPC is allowed, NO if it is not allowed>
+ * @param updatedPermissionStatuses A dictionary of the new current status of all subscription items; containing <key(String): RPC Name, object(BOOL): YES if the RPC is allowed, NO if it is not allowed>
* @param status The unified group status of the RPCs in the updatedPermissionStatuses dictionary. Allowed, if all RPCs are now allowed, Disallowed if all RPCs are now disallowed, or Mixed if some are allowed, and some are disallowed
*/
typedef void (^SDLPermissionsChangedHandler)(NSDictionary<SDLPermissionRPCName, NSNumber *> *_Nonnull updatedPermissionStatuses, SDLPermissionGroupStatus status);
@@ -72,8 +72,8 @@ typedef void (^SDLPermissionsChangedHandler)(NSDictionary<SDLPermissionRPCName,
/**
* A block that will be called when specified permissions change. It will return whether each RPC and its parameters are allowed as well as the permission group status of all the RPCs.
*
- * @param updatedPermissionStatuses A dictionary of permission changes containing <key(String): SDLPermissionRPCName, object(SDLRPCPermissionStatus)>
- * @param status The change made to all of the RPCs in the updatedPermissionStatuses dictionary. Allowed, if all RPCs are now allowed, Disallowed if all RPCs are now disallowed, or Mixed if some are allowed, and some are disallowed
+ * @param updatedPermissionStatuses A dictionary of the new current status of all subscription items; containing <key(String): SDLPermissionRPCName, object(SDLRPCPermissionStatus)>
+ * @param status The unified group status of the RPCs in the updatedPermissionStatuses dictionary. Allowed, if all RPCs are now allowed, Disallowed if all RPCs are now disallowed, or Mixed if some are allowed, and some are disallowed
*/
typedef void (^SDLRPCPermissionStatusChangedHandler)(NSDictionary<SDLRPCFunctionName, SDLRPCPermissionStatus *> *_Nonnull updatedPermissionStatuses, SDLPermissionGroupStatus status);