Skip to content

Commit

Permalink
Fix reference in manual (#51741)
Browse files Browse the repository at this point in the history
  • Loading branch information
LilithHafner committed Oct 20, 2023
1 parent 795d8d7 commit f8f573d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doc/src/manual/multi-threading.md
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,8 @@ threads in Julia:
method, and module definitions in parallel.
* Be aware that finalizers registered by a library may break if threads are enabled.
This may require some transitional work across the ecosystem before threading
can be widely adopted with confidence. See the next section for further details.
can be widely adopted with confidence. See the section on
[the safe use of finalizers](@ref man-finalizers) for further details.

## [Task Migration](@id man-task-migration)

Expand All @@ -466,7 +467,7 @@ and therefore should not be used to index into a vector of buffers or stateful o
Task migration was introduced in Julia 1.7. Before this tasks always remained on the same thread that they were
started on.

## Safe use of Finalizers
## [Safe use of Finalizers](@id man-finalizers)

Because finalizers can interrupt any code, they must be very careful in how
they interact with any global state. Unfortunately, the main reason that
Expand Down

0 comments on commit f8f573d

Please sign in to comment.