summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLPolyline.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/MGLPolyline.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/MGLPolyline.h')
-rw-r--r--platform/darwin/src/MGLPolyline.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/platform/darwin/src/MGLPolyline.h b/platform/darwin/src/MGLPolyline.h
index c28299c7e0..5e45513735 100644
--- a/platform/darwin/src/MGLPolyline.h
+++ b/platform/darwin/src/MGLPolyline.h
@@ -8,13 +8,20 @@
NS_ASSUME_NONNULL_BEGIN
-/** The `MGLPolyline` class represents a shape consisting of one or more points that define connecting line segments. The points are connected end-to-end in the order they are provided. The first and last points are not connected to each other. */
+/**
+ The `MGLPolyline` class represents a shape consisting of one or more points
+ that define connecting line segments. The points are connected end-to-end in
+ the order they are provided. The first and last points are not connected to
+ each other.
+ */
@interface MGLPolyline : MGLMultiPoint <MGLOverlay>
/**
- Creates and returns an `MGLPolyline` object from the specified set of coordinates.
+ Creates and returns an `MGLPolyline` 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 polyline object.
*/