summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmkiley <jordan.kiley@mapbox.com>2017-12-04 12:19:05 -0800
committerjmkiley <jordan.kiley@mapbox.com>2017-12-04 12:53:19 -0800
commitd4e1b7cf38b176eff70d1093b3d590cb0a1686bd (patch)
treefbeb197b1d39e30a367d0b32af06f4da3a154de6
parentaaccf34e033c3ff1a96aeb3f126cdf8d4c51b15a (diff)
downloadqtlocation-mapboxgl-d4e1b7cf38b176eff70d1093b3d590cb0a1686bd.tar.gz
[ios] missed one iOS SDK
-rw-r--r--platform/ios/DEVELOPING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/DEVELOPING.md b/platform/ios/DEVELOPING.md
index c0f309ab8b..a3f92d5dd1 100644
--- a/platform/ios/DEVELOPING.md
+++ b/platform/ios/DEVELOPING.md
@@ -74,7 +74,7 @@ To add any Objective-C type, constant, or member to the iOS SDK’s public inter
### Making a type or constant public
-To add an Objective-C class, protocol, category, typedef, enumeration, or global constant to this SDK’s public interface:
+To add an Objective-C class, protocol, category, typedef, enumeration, or global constant to the iOS maps SDK’s public interface:
1. _(Optional.)_ Add the macro `MGL_EXPORT` prior to the declaration for classes and global constants when adding them in shared headers located in `platform/darwin`. To use this macro, include `MGLFoundation.h`. You can check whether all public symbols are exported correctly by running `make check-public-symbols`.
1. _(Optional.)_ Add the type or constant’s name to the relevant category in the `custom_categories` section of [the jazzy configuration file](./jazzy.yml). This is required for classes and protocols and also recommended for any other type that is strongly associated with a particular class or protocol. If you leave out this step, the symbol will appear in an “Other” section in the generated HTML documentation’s table of contents.