diff options
Diffstat (limited to 'book/en/src/internals/access.md')
-rw-r--r-- | book/en/src/internals/access.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/internals/access.md b/book/en/src/internals/access.md index 513cef1b..a4c9ca09 100644 --- a/book/en/src/internals/access.md +++ b/book/en/src/internals/access.md @@ -21,7 +21,7 @@ This makes it impossible for the user code to refer to these static variables. Access to the resources is then given to each task using a `Resources` struct whose fields correspond to the resources the task has access to. There's one such struct per task and the `Resources` struct is initialized with either a -mutable reference (`&mut`) to the static variables or with a resource proxy (see +unique reference (`&mut-`) to the static variables or with a resource proxy (see section on [critical sections](critical-sections.html)). The code below is an example of the kind of source level transformation that |