summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmkiley <jordan.kiley@mapbox.com>2018-04-19 15:21:24 -0700
committerjmkiley <jordan.kiley@mapbox.com>2018-04-19 15:21:24 -0700
commit39fd0678e78239e2c21ab05af31aff86bed122a8 (patch)
tree70329befdc1d2049f07220be04c35b454a683ba0
parent8f7268ee1c3b8bc3a87a3b7236a992bd29d67cd4 (diff)
downloadqtlocation-mapboxgl-39fd0678e78239e2c21ab05af31aff86bed122a8.tar.gz
[ios, macos] punctuation
-rw-r--r--platform/darwin/docs/guides/Migrating to Expressions.md.ejs2
-rw-r--r--platform/ios/docs/guides/Migrating to Expressions.md2
-rw-r--r--platform/macos/docs/guides/Migrating to Expressions.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/platform/darwin/docs/guides/Migrating to Expressions.md.ejs b/platform/darwin/docs/guides/Migrating to Expressions.md.ejs
index 1a03534288..144035a367 100644
--- a/platform/darwin/docs/guides/Migrating to Expressions.md.ejs
+++ b/platform/darwin/docs/guides/Migrating to Expressions.md.ejs
@@ -75,7 +75,7 @@ There are three main types of events in the USGS dataset: earthquakes, explosion
<%- guideExample(guide, 'Categorical', os) %>
-If your use case does not require a default value, you can either apply a predicate to your layer prior to styling it, or use the format string `"valueForKeyPath:".
+If your use case does not require a default value, you can either apply a predicate to your layer prior to styling it, or use the format string `"valueForKeyPath:"``.
<%- guideExample(guide, 'CategoricalValue', os) %>
diff --git a/platform/ios/docs/guides/Migrating to Expressions.md b/platform/ios/docs/guides/Migrating to Expressions.md
index 2a9a22a3ff..58d5a963f5 100644
--- a/platform/ios/docs/guides/Migrating to Expressions.md
+++ b/platform/ios/docs/guides/Migrating to Expressions.md
@@ -121,7 +121,7 @@ layer.circleColor = NSExpression(format: "MGL_MATCH(type, 'earthquake', %@, 'exp
UIColor.orange, UIColor.red, UIColor.yellow, defaultColor)
```
-If your use case does not require a default value, you can either apply a predicate to your layer prior to styling it, or use the format string `"valueForKeyPath:".
+If your use case does not require a default value, you can either apply a predicate to your layer prior to styling it, or use the format string `"valueForKeyPath:"``.
```swift
let stops : [String : UIColor] = ["earthquake" : UIColor.orange,
diff --git a/platform/macos/docs/guides/Migrating to Expressions.md b/platform/macos/docs/guides/Migrating to Expressions.md
index c8ad496230..be48acbfaf 100644
--- a/platform/macos/docs/guides/Migrating to Expressions.md
+++ b/platform/macos/docs/guides/Migrating to Expressions.md
@@ -122,7 +122,7 @@ format: "MGL_MATCH(type, 'earthquake', %@, 'explosion', %@, 'quarry blast', %@,
NSColor.orange, NSColor.red, NSColor.yellow, defaultColor)
```
-If your use case does not require a default value, you can either apply a predicate to your layer prior to styling it, or use the format string `"valueForKeyPath:".
+If your use case does not require a default value, you can either apply a predicate to your layer prior to styling it, or use the format string `"valueForKeyPath:"``.
```swift
let stops : [String : NSColor] = ["earthquake" : NSColor.orange,