File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ Some examples of specifiers are:
82
82
data Coord2D: x U64, y U64
83
83
```
84
84
where ` data Coord2D ` is a * data type declaration* , separated with colon from the type information,
85
- which is ` x U64, y U65 ` . Data type specifiers contain no body.
85
+ which is ` x U64, y U64 ` . Data type specifiers contain no body.
86
86
- value specifier:
87
87
```
88
88
val value: U8 := 5
@@ -155,7 +155,7 @@ makes 2D coordinate as a product of two 32-bit integers. Likewise, a co-product
155
155
156
156
#### Projection operators
157
157
158
- Projection operators <code >  ; </code > and ` . ` allow to call a function providing it with arguments. The use of these
158
+ Projection operators <code >  ; </code > (space) and ` . ` (dot) allow to call a function providing it with arguments. The use of these
159
159
two forms depends on the function type and a number of its arguments. There are two types of functions, which affect the
160
160
operator: prefix functions (declared using ` fx ` keyword) and infix functions (declared with ` infx ` keyword). For prefix
161
161
operators one calls a function (i.e. does projection) by putting function argument after the function name, separating
You can’t perform that action at this time.
0 commit comments