TRPL: Fix Inline Code Typography

This commit is contained in:
Pascal Hertleif 2015-05-15 14:41:21 +02:00
parent 7d0ae692c9
commit 94be1153f1
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ static N: i32 = 5;
Unlike [`let`][let] bindings, you must annotate the type of a `static`.
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";