diff options
author | Eduardo Julian | 2022-06-16 00:48:19 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-16 00:48:19 -0400 |
commit | 9e2f1e76f2c8df01ed7687d934c3210fcf676bd6 (patch) | |
tree | 115fab5bd8a5f53dc0d13ce5453095324a83496f /documentation/specification | |
parent | f92c806ee8da63f04bbefbf558f6249bacdb47ea (diff) |
De-sigil-ification: suffix : [Part 13]
Diffstat (limited to 'documentation/specification')
-rw-r--r-- | documentation/specification/Syntax.md | 6 |
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_. |