summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2019-03-15 16:02:02 -0400
committerGitHub <noreply@github.com>2019-03-15 16:02:02 -0400
commitbb1c74a16e3c97eb15e6bd7496559431aed3e8c7 (patch)
tree54c6fb583356ead27e47b26aac1ccf2a15b782ad
parente55fe5cb031dd962c82898f2a950fe8650435c6b (diff)
downloadsdl_ios-bugfix/issue_1170_sendlocation_documenation_initializer.tar.gz
-rw-r--r--SmartDeviceLink/SDLSendLocation.h6
1 files 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<NSString *> *)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<SDLFloat> *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
*/