File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 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:
8282 data Coord2D: x U64, y U64
8383 ```
8484 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.
8686- value specifier:
8787 ```
8888 val value: U8 := 5
@@ -155,7 +155,7 @@ makes 2D coordinate as a product of two 32-bit integers. Likewise, a co-product
155155
156156#### Projection operators
157157
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
159159two forms depends on the function type and a number of its arguments. There are two types of functions, which affect the
160160operator: prefix functions (declared using ` fx ` keyword) and infix functions (declared with ` infx ` keyword). For prefix
161161operators 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