diff options
author | Joel Fischer <joeljfischer@gmail.com> | 2020-08-05 10:19:20 -0400 |
---|---|---|
committer | Joel Fischer <joeljfischer@gmail.com> | 2020-08-05 10:19:20 -0400 |
commit | db83f3a7a27faebebf671e95219a0dcc95d3d1d9 (patch) | |
tree | bd3ed4a7aca346f27392a969a54c00febe4dd0d9 | |
parent | b975aecfaca3718e2e2a28dd69b00445ea2eca1b (diff) | |
parent | 75180252f45d08bd23d6b58c6b7295c359ee3e13 (diff) | |
download | sdl_ios-feature/issue-926-command-list-limitations.tar.gz |
Merge branch 'feature/issue-926-command-list-limitations' of https://github.com/smartdevicelink/sdl_ios into feature/issue-926-command-list-limitationsfeature/issue-926-command-list-limitations
-rw-r--r-- | SmartDeviceLink/SDLDriverDistractionCapability.h | 5 | ||||
-rwxr-xr-x | SmartDeviceLink/SDLSystemCapability.h | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLDriverDistractionCapability.h b/SmartDeviceLink/SDLDriverDistractionCapability.h index 6f36756e6..3f2943bef 100644 --- a/SmartDeviceLink/SDLDriverDistractionCapability.h +++ b/SmartDeviceLink/SDLDriverDistractionCapability.h @@ -53,12 +53,11 @@ NS_ASSUME_NONNULL_BEGIN @property (nullable, strong, nonatomic) NSNumber<SDLInt> *menuLength; /** - * The depth of submenus allowed when the driver is distracted. e.g. 3 == top level menu -> submenu -> submenu; 1 == - * top level menu only + * The depth of submenus allowed when the driver is distracted. e.g. 3 == top level menu -> submenu -> submenu; 1 == top level menu only * {"default_value": null, "max_value": null, "min_value": 1} */ @property (nullable, strong, nonatomic) NSNumber<SDLUInt> *subMenuDepth; @end -NS_ASSUME_NONNULL_END
\ No newline at end of file +NS_ASSUME_NONNULL_END diff --git a/SmartDeviceLink/SDLSystemCapability.h b/SmartDeviceLink/SDLSystemCapability.h index 287c73a28..d41136c2f 100755 --- a/SmartDeviceLink/SDLSystemCapability.h +++ b/SmartDeviceLink/SDLSystemCapability.h @@ -108,7 +108,7 @@ NS_ASSUME_NONNULL_BEGIN - (instancetype)initWithSeatLocationCapability:(SDLSeatLocationCapability *)capability; /// Convenience init for a Driver Distraction capability -/// @param capability Information about +/// @param capability Describes capabilities when the driver is distracted /// @return A SDLSystemCapability object - (instancetype)initWithDriverDistractionCapability:(SDLDriverDistractionCapability *)capability; |