1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-14 22:15:54 +02:00

Fixed link (#1044)

This commit is contained in:
Arman 2023-08-02 19:09:42 +03:30 committed by GitHub
parent b44a6f76c3
commit 560cad93e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ Because `static` variables are accessible from any thread, they must be `Sync`.
is possible through a [`Mutex`](https://doc.rust-lang.org/std/sync/struct.Mutex.html), atomic or is possible through a [`Mutex`](https://doc.rust-lang.org/std/sync/struct.Mutex.html), atomic or
similar. It is also possible to have mutable statics, but they require manual synchronisation so any similar. It is also possible to have mutable statics, but they require manual synchronisation so any
access to them requires `unsafe` code. We will look at access to them requires `unsafe` code. We will look at
mutable statics](../unsafe/mutable-static-variables.md) in the chapter on Unsafe Rust. [mutable statics](../unsafe/mutable-static-variables.md) in the chapter on Unsafe Rust.
<details> <details>