We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d0ae69 commit 94be115Copy full SHA for 94be115
src/doc/trpl/const-and-static.md
@@ -32,7 +32,7 @@ static N: i32 = 5;
32
Unlike [`let`][let] bindings, you must annotate the type of a `static`.
33
34
Statics live for the entire lifetime of a program, and therefore any
35
-reference stored in a constant has a [`’static` lifetime][lifetimes]:
+reference stored in a constant has a [`'static` lifetime][lifetimes]:
36
37
```rust
38
static NAME: &'static str = "Steve";
0 commit comments