diff --git a/src/doc/trpl/const-and-static.md b/src/doc/trpl/const-and-static.md index be0c87319b37c..f309dd0fad6d9 100644 --- a/src/doc/trpl/const-and-static.md +++ b/src/doc/trpl/const-and-static.md @@ -31,10 +31,8 @@ static N: i32 = 5; Unlike [`let`][let] bindings, you must annotate the type of a `static`. -[let]: variable-bindings.html - Statics live for the entire lifetime of a program, and therefore any -reference stored in a constant has a [`’static` lifetime][lifetimes]: +reference stored in a constant has a [`'static` lifetime][lifetimes]: ```rust static NAME: &'static str = "Steve";