Skip to content

Commit

Permalink
Fix mapOf invocations in kotlin code samples (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-jplatte authored Nov 21, 2024
2 parents fbd35cb + 2d68a06 commit 7f7be97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/idempotency.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ svix.message.create("app_Xzx8bQeOB1D1XEYmAJaRGoj0",
MessageIn(
eventType = "invoice.paid",
payload = mapOf<String, Any>(
"type": "invoice.paid",
"type" to "invoice.paid",
"id" to "invoice_WF7WtCLFFtd8ubcTgboSFNql",
"status" to "paid",
"attempt" to 2
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ svix.message.create("app_Xzx8bQeOB1D1XEYmAJaRGoj0",
MessageIn(
eventType = "invoice.paid",
payload = mapOf<String, Any>(
"type": "invoice.paid",
"type" to "invoice.paid",
"id" to "invoice_WF7WtCLFFtd8ubcTgboSFNql",
"status" to "paid",
"attempt" to 2
Expand Down

0 comments on commit 7f7be97

Please sign in to comment.