segmentio / segment-docs

Segment Documentation. Powered by Jekyll.
https://segment.com/docs/
Creative Commons Attribution 4.0 International
46 stars 324 forks source link

[Content]: Kotlin Implementation Guide missing comma on sample code #6756

Closed Kotronator closed 6 days ago

Kotronator commented 6 days ago

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