Skip to content

Commit ea0a90d

Browse files
committed
Fix bug
1 parent 0a5990b commit ea0a90d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/tour/captures.effekt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Thus, we need to enforce that both `f` and `g` are pure, that is, do not capture
8383
```
8484
def parallel (f: () => Unit at {}, g: () => Unit at {}): Unit = <>
8585
```
86-
The type-checker will reject calls, where we try to pass functions that to close over capabilities (or builtin resources):
86+
The type-checker will reject calls, where we try to pass functions that close over capabilities (or builtin resources):
8787
```effekt:repl
8888
parallel(
8989
box { () => println("Hello, ") },

0 commit comments

Comments
 (0)