Skip to content

Commit

Permalink
Add missing backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed May 10, 2015
1 parent 715f7c3 commit 25543f3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/doc/trpl/references-and-borrowing.md
Expand Up @@ -312,6 +312,7 @@ println!("{}", y);

We get this error:

```text
error: `x` does not live long enough
y = &x;
^
Expand Down Expand Up @@ -347,6 +348,7 @@ println!("{}", y);

We get this error:

```text
error: `x` does not live long enough
y = &x;
^
Expand All @@ -366,3 +368,4 @@ statement 1 at 3:14
println!("{}", y);
}
```

0 comments on commit 25543f3

Please sign in to comment.