What article on segment.com/docs is affected?
https://segment.com/docs/connections/sources/catalog/libraries/mobile/kotlin-android/implementation/#track
What part(s) of the article would you like to see updated?
Kotlin. code on track sample is
analytics.track("View Product", buildJsonObject {
put("productId", 123)
put("productName" "Striped trousers")
});
and should be
analytics.track("View Product", buildJsonObject {
put("productId", 123)
put("productName", "Striped trousers")
});
comma is missing between "productName" "Striped trousers"
Additional information
No response