summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLPointAnnotation.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/MGLPointAnnotation.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/MGLPointAnnotation.h')
-rw-r--r--platform/darwin/src/MGLPointAnnotation.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/platform/darwin/src/MGLPointAnnotation.h b/platform/darwin/src/MGLPointAnnotation.h
index d186cbff18..13afcab717 100644
--- a/platform/darwin/src/MGLPointAnnotation.h
+++ b/platform/darwin/src/MGLPointAnnotation.h
@@ -7,10 +7,17 @@
NS_ASSUME_NONNULL_BEGIN
-/** The `MGLPointAnnotation` class defines a concrete annotation object located at a specified point. You can use this class, rather than define your own, in situations where all you want to do is associate a point on the map with a title. */
+/**
+ The `MGLPointAnnotation` class defines a concrete annotation object located at
+ a specified point. You can use this class, rather than define your own, in
+ situations where all you want to do is associate a point on the map with a
+ title.
+ */
@interface MGLPointAnnotation : MGLShape
-/** The coordinate point of the annotation, specified as a latitude and longitude. */
+/**
+ The coordinate point of the annotation, specified as a latitude and longitude.
+ */
@property (nonatomic, assign) CLLocationCoordinate2D coordinate;
@end