Skip to content

Commit

Permalink
Fix typo in docs: Fiber reference page (zio#8812)
Browse files Browse the repository at this point in the history
Added a missing parenthesis
  • Loading branch information
DanBondarenko authored May 3, 2024
1 parent 4afafd0 commit 23ea4f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/reference/fiber/fiber.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ object MainApp extends ZIOAppDefault {
}
```

In the above example, the `bar` fiber forked in the local scope has bigger lifetime than its parent fiber (`foo`. So, when its parent fiber (`foo`) is terminated, the `bar` fiber still running in the local scope until the local scope is closed. Let's see the output:
In the above example, the `bar` fiber forked in the local scope has bigger lifetime than its parent fiber (`foo`). So, when its parent fiber (`foo`) is terminated, the `bar` fiber still running in the local scope until the local scope is closed. Let's see the output:

```
Local scope started!
Expand Down

0 comments on commit 23ea4f8

Please sign in to comment.