Skip to content

Commit 25543f3

Browse files
Add missing backticks
1 parent 715f7c3 commit 25543f3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/doc/trpl/references-and-borrowing.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ println!("{}", y);
312312

313313
We get this error:
314314

315+
```text
315316
error: `x` does not live long enough
316317
y = &x;
317318
^
@@ -347,6 +348,7 @@ println!("{}", y);
347348

348349
We get this error:
349350

351+
```text
350352
error: `x` does not live long enough
351353
y = &x;
352354
^
@@ -366,3 +368,4 @@ statement 1 at 3:14
366368
367369
println!("{}", y);
368370
}
371+
```

0 commit comments

Comments
 (0)