1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-01 17:34:25 +02:00

Remove dangling footnote

This commit is contained in:
Martin Geisler 2023-01-10 18:52:37 +01:00 committed by GitHub
parent 8dc2ea4503
commit 0d5232358b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ fn main() {
}
```
As noted in the [Rust RFC Book][1], these are not inlined upon use and have an actual associated memory location. This is useful for unsafe and embedded code, and have a `'static` lifetime[^lifetime].
As noted in the [Rust RFC Book][1], these are not inlined upon use and have an actual associated memory location. This is useful for unsafe and embedded code, and have a `'static` lifetime.
We will look at mutating static data in the [chapter on Unsafe Rust](../unsafe.md).