fixed <,> in Tuple section
This commit is contained in:
parent
5067476f1a
commit
f5ae2d9558
1 changed files with 2 additions and 2 deletions
|
@ -10,10 +10,10 @@ may contain `null` instead of their value type, or may be completely omitted.
|
||||||
## DataTypes
|
## DataTypes
|
||||||
|
|
||||||
### Tuples
|
### Tuples
|
||||||
We will write tuples types as `<(A,B)>` for a Tuple containing something of `A` and
|
We will write tuples types as `(A,B)` for a Tuple containing something of `A` and
|
||||||
something of `B`. We will encode this as a JSON Array of length n, where n is the
|
something of `B`. We will encode this as a JSON Array of length n, where n is the
|
||||||
length of the tuple.
|
length of the tuple.
|
||||||
For example a Value of `<(Number,String)>` might be `[5,"Hello World!"]`
|
For example a Value of `(<Number>,<String>)` might be `[5,"Hello World!"]`
|
||||||
|
|
||||||
### Lists
|
### Lists
|
||||||
we will write `[A]` for the type of Lists containing stuff of type `A`. These are
|
we will write `[A]` for the type of Lists containing stuff of type `A`. These are
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue