From a801e427bfa76cc9c06113e804f946b7f9dba529 Mon Sep 17 00:00:00 2001 From: Magnus Madsen Date: Sun, 25 Jan 2026 18:28:57 +0100 Subject: [PATCH] Revert "fix: record type syntax from '=' to ':' (#280)" This reverts commit 87d67e346fe874538464898a283992557dc822df. --- src/records.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/records.md b/src/records.md index ae2f519..88edce7 100644 --- a/src/records.md +++ b/src/records.md @@ -13,7 +13,7 @@ A record literal is written with curly braces: ``` which has the record type -`{ x: Int32, y: Int32 }`. +`{ x = Int32, y = Int32 }`. The order of labels in a record does not matter. Hence the above record is equivalent to: