aboutsummaryrefslogtreecommitdiff
path: root/documentation/specification/Syntax.md
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/specification/Syntax.md')
-rw-r--r--documentation/specification/Syntax.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/specification/Syntax.md b/documentation/specification/Syntax.md
index aa107d9cf..bddc7ec1b 100644
--- a/documentation/specification/Syntax.md
+++ b/documentation/specification/Syntax.md
@@ -124,7 +124,7 @@ For example:
* `(this #is "a" valid.form)`
* `(+ 123 456)`
-* `(def: my-constant +3.14)`
+* `(def my-constant +3.14)`
# Tuple
@@ -136,7 +136,7 @@ For example:
* `[this #is "a" valid.form]`
* `[+ 123 456]`
-* `[def: my-constant +3.14]`
+* `[def my-constant +3.14]`
# Record
@@ -148,7 +148,7 @@ For example:
* `{this #is "a" valid.form}`
* `{+ [123 456]}`
-* `{def: {my-constant +3.14}}`
+* `{def {my-constant +3.14}}`
Because pairs of syntax tokens are expected, _the number of elements in a record must always be an **even** number_.