Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix failing persistent task example in doc #283

Merged
merged 2 commits into from
Apr 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/src/persistent_tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ end)
Here is an example test with a dummy expr which will obviously fail, because it's explicitly
spawning a Task that never dies.
```@repl
Aqua.test_persistent_tasks(Aqua, quote
using Aqua
Aqua.test_persistent_tasks(Aqua, expr = quote
Threads.@spawn while true sleep(0.5) end
end
end)
```

## How the test works
Expand Down
Loading