summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLPolygon.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/MGLPolygon.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/MGLPolygon.h')
-rw-r--r--platform/darwin/src/MGLPolygon.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/platform/darwin/src/MGLPolygon.h b/platform/darwin/src/MGLPolygon.h
index c5480264fb..1a158874bb 100644
--- a/platform/darwin/src/MGLPolygon.h
+++ b/platform/darwin/src/MGLPolygon.h
@@ -8,13 +8,20 @@
NS_ASSUME_NONNULL_BEGIN
-/** The `MGLPolygon` class represents a shape consisting of one or more points that define a closed polygon. The points are connected end-to-end in the order they are provided. The first and last points are connected to each other to create the closed shape. */
+/**
+ The `MGLPolygon` class represents a shape consisting of one or more points that
+ define a closed polygon. The points are connected end-to-end in the order they
+ are provided. The first and last points are connected to each other to create
+ the closed shape.
+ */
@interface MGLPolygon : MGLMultiPoint <MGLOverlay>
/**
- Creates and returns an `MGLPolygon` object from the specified set of coordinates.
+ Creates and returns an `MGLPolygon` object from the specified set of
+ coordinates.
- @param coords The array of coordinates defining the shape. The data in this array is copied to the new object.
+ @param coords The array of coordinates defining the shape. The data in this
+ array is copied to the new object.
@param count The number of items in the `coords` array.
@return A new polygon object.
*/