From bb1c74a16e3c97eb15e6bd7496559431aed3e8c7 Mon Sep 17 00:00:00 2001 From: Joel Fischer Date: Fri, 15 Mar 2019 16:02:02 -0400 Subject: Fix `addressLines` -> `address` --- SmartDeviceLink/SDLSendLocation.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SmartDeviceLink/SDLSendLocation.h b/SmartDeviceLink/SDLSendLocation.h index 7de6c5e10..a95c18533 100644 --- a/SmartDeviceLink/SDLSendLocation.h +++ b/SmartDeviceLink/SDLSendLocation.h @@ -22,14 +22,14 @@ NS_ASSUME_NONNULL_BEGIN - (instancetype)initWithLongitude:(double)longitude latitude:(double)latitude locationName:(nullable NSString *)locationName locationDescription:(nullable NSString *)locationDescription displayAddressLines:(nullable NSArray *)displayAddressLines phoneNumber:(nullable NSString *)phoneNumber image:(nullable SDLImage *)image deliveryMode:(nullable SDLDeliveryMode)deliveryMode timeStamp:(nullable SDLDateTime *)timeStamp address:(nullable SDLOasisAddress *)address; /** - * The longitudinal coordinate of the location. Either the latitude / longitude OR the `addressLines` must be provided. + * The longitudinal coordinate of the location. Either the latitude / longitude OR the `address` must be provided. * * Float, Optional, -180.0 - 180.0 */ @property (nullable, copy, nonatomic) NSNumber *longitudeDegrees; /** - * The latitudinal coordinate of the location. Either the latitude / longitude OR the `addressLines` must be provided. + * The latitudinal coordinate of the location. Either the latitude / longitude OR the `address` must be provided. * * Float, Optional, -90.0 - 90.0 */ @@ -50,7 +50,7 @@ NS_ASSUME_NONNULL_BEGIN @property (nullable, copy, nonatomic) NSString *locationDescription; /** - * Location address for display purposes only. Either the latitude / longitude OR the `addressLines` must be provided. + * Location address for display purposes only. Either the latitude / longitude OR the `address` must be provided. * * Contains String, Optional, Max Array Length = 4, Max String Length = 500 */ -- cgit v1.2.1