Skip to content

Commit ccc3cb5

Browse files
Fix spelling in Computation Tour: tyoes -> types (#781)
1 parent 1e58eea commit ccc3cb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/tour/computation.effekt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Examples of "computation" in Effekt are:
1414
- instances of interfaces (also known as "objects"), and
1515
- regions
1616

17-
Functions (and all other computation tyoes) are _second-class_ in Effekt. To make this difference explicit, we pass values in parentheses (e.g. `f(42)`) and computation in braces (e.g. `f { x => println(x) }`).
17+
Functions (and all other computation types) are _second-class_ in Effekt. To make this difference explicit, we pass values in parentheses (e.g. `f(42)`) and computation in braces (e.g. `f { x => println(x) }`).
1818

1919
```
2020
def myMap[A, B](xs: List[A]) { f: A => B }: List[B] =

0 commit comments

Comments
 (0)