Skip to content

Commit 1983fb9

Browse files
authored
Merge pull request #1 from crisdut/fix/typo
Fix typo
2 parents d3b47bc + 6d809de commit 1983fb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/design.md

+2-2
Original file line numberDiff line numberDiff 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>&nbsp;</code> and `.` allow to call a function providing it with arguments. The use of these
158+
Projection operators <code>&nbsp;</code> (space) and `.` (dot) allow to call a function providing it with arguments. The use of these
159159
two forms depends on the function type and a number of its arguments. There are two types of functions, which affect the
160160
operator: prefix functions (declared using `fx` keyword) and infix functions (declared with `infx` keyword). For prefix
161161
operators one calls a function (i.e. does projection) by putting function argument after the function name, separating

0 commit comments

Comments
 (0)