diff options
Diffstat (limited to 'ARCHITECTURE.md')
-rw-r--r-- | ARCHITECTURE.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md index a4405e6baf..590ea97722 100644 --- a/ARCHITECTURE.md +++ b/ARCHITECTURE.md @@ -2,7 +2,7 @@ This document aims to outline at a high level the various parts that make up map # Repository structure -mapbox-gl-native uses a monolithic that houses both core C++ code and code that wraps the C++ core with SDKs for Android, iOS, OS X, Node.js, and Qt. A "monorepo" allows us to: +mapbox-gl-native uses a monolithic that houses both core C++ code and code that wraps the C++ core with SDKs for Android, iOS, macOS, Node.js, and Qt. A "monorepo" allows us to: * Make changes to the core API and SDKs simultaneously, ensuring no platform falls behind. * Ensure that core changes do not inadvertently break SDK tests. @@ -42,7 +42,7 @@ We track mason dependencies for a given platform in the file `platform/<platform Outside of the core C++ static library, platform SDKs typically rely on platform-native build tooling to complete the job. -* For iOS and OS X this means Xcode and the xcodebuild command line tool. +* For iOS and macOS this means Xcode and the xcodebuild command line tool. * For Android, Gradle and Android Studio. * For Qt, `qmake`. |