diff --git a/rustbook-en/src/ch20-01-unsafe-rust.md b/rustbook-en/src/ch20-01-unsafe-rust.md index 7d4d8d8c..703c9570 100644 --- a/rustbook-en/src/ch20-01-unsafe-rust.md +++ b/rustbook-en/src/ch20-01-unsafe-rust.md @@ -400,8 +400,7 @@ value. Static variables are similar to constants, which we discussed in the -[“Differences Between Variables and -Constants”][differences-between-variables-and-constants] section +[“Constants”][differences-between-variables-and-constants] section in Chapter 3. The names of static variables are in `SCREAMING_SNAKE_CASE` by convention. Static variables can only store references with the `'static` lifetime, which means the Rust compiler can figure out the lifetime and we