summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLShape.h
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-05-09 16:05:14 -0700
committerMinh Nguyễn <mxn@1ec5.org>2016-05-10 09:59:04 -0700
commit1634058b51da4885224ba7f63aab14c7d794652f (patch)
tree810318a22f6d165466eace6804c247626b7fe891 /platform/darwin/src/MGLShape.h
parenta025d8327afeea74a9a1a8c9a9a237e21af917bb (diff)
downloadqtlocation-mapboxgl-1634058b51da4885224ba7f63aab14c7d794652f.tar.gz
[ios, osx] Reformatted documentation comments
Reformatted documentation comments in public headers in the OS X SDK and public headers shared between the iOS and OS X SDKs to wrap at column 80 and avoid excessive indentation that causes SourceKitten to detect code blocks.
Diffstat (limited to 'platform/darwin/src/MGLShape.h')
-rw-r--r--platform/darwin/src/MGLShape.h22
1 files changed, 18 insertions, 4 deletions
diff --git a/platform/darwin/src/MGLShape.h b/platform/darwin/src/MGLShape.h
index c1b84816f2..40c92fc32d 100644
--- a/platform/darwin/src/MGLShape.h
+++ b/platform/darwin/src/MGLShape.h
@@ -6,18 +6,32 @@
NS_ASSUME_NONNULL_BEGIN
-/** The `MGLShape` class is an abstract class that defines the basic properties for all shape-based annotation objects. This class must be subclassed and cannot be used as is. Subclasses are responsible for defining the geometry of the shape and providing an appropriate value for the coordinate property inherited from the `MGLAnnotation` protocol. */
+/**
+ The `MGLShape` class is an abstract class that defines the basic properties for
+ all shape-based annotation objects. This class must be subclassed and cannot be
+ used as is. Subclasses are responsible for defining the geometry of the shape
+ and providing an appropriate value for the coordinate property inherited from
+ the `MGLAnnotation` protocol.
+ */
@interface MGLShape : NSObject <MGLAnnotation>
-/** The title of the shape annotation. The default value of this property is `nil`. */
+/**
+ The title of the shape annotation. The default value of this property is `nil`.
+ */
@property (nonatomic, copy, nullable) NSString *title;
-/** The subtitle of the shape annotation. The default value of this property is `nil`. */
+/**
+ The subtitle of the shape annotation. The default value of this property is
+ `nil`.
+ */
@property (nonatomic, copy, nullable) NSString *subtitle;
#if !TARGET_OS_IPHONE
-/** The tooltip of the shape annotation. The default value of this property is `nil`. */
+/**
+ The tooltip of the shape annotation. The default value of this property is
+ `nil`.
+ */
@property (nonatomic, copy, nullable) NSString *toolTip;
#endif