summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmkiley <jordan.kiley@mapbox.com>2017-12-04 12:25:51 -0800
committerjmkiley <jordan.kiley@mapbox.com>2017-12-04 12:53:20 -0800
commite2fe8719a64c1e64971babbed6f7add41653a242 (patch)
treece40e3163668e2ac8835e43177c0cafe6afa1eb3
parentd4e1b7cf38b176eff70d1093b3d590cb0a1686bd (diff)
downloadqtlocation-mapboxgl-e2fe8719a64c1e64971babbed6f7add41653a242.tar.gz
[ios] Missed one for macOS
-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 a3f92d5dd1..40d45e2e56 100644
--- a/platform/ios/DEVELOPING.md
+++ b/platform/ios/DEVELOPING.md
@@ -78,7 +78,7 @@ To add an Objective-C class, protocol, category, typedef, enumeration, or global
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.
-1. _(Optional.)_ If the symbol would also be publicly exposed in the macOS SDK, consult [the companion macOS document](../macos/DEVELOPING.md#making-a-type-or-constant-public) for further instructions.
+1. _(Optional.)_ If the symbol would also be publicly exposed in the macOS maps SDK, consult [the companion macOS document](../macos/DEVELOPING.md#making-a-type-or-constant-public) for further instructions.
### Adding a source code file