We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@async
1 parent 50a8cce commit 6db7f1fCopy full SHA for 6db7f1f
doc/src/manual/methods.md
@@ -614,7 +614,7 @@ Start some other operations that use `f(x)`:
614
julia> g(x) = f(x)
615
g (generic function with 1 method)
616
617
-julia> t = Threads.@spawn f(wait()); yield();
+julia> t = @async f(wait()); yield();
618
```
619
620
Now we add some new methods to `f(x)`:
@@ -639,7 +639,7 @@ julia> g(1)
639
julia> fetch(schedule(t, 1))
640
"original definition"
641
642
643
644
645
"definition for Int"
0 commit comments