Skip to content

Commit 9293607

Browse files
committed
quick formatting fix
1 parent 4347cbb commit 9293607

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/doc/trpl/pointers.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,7 @@ println!("{}", x + z);
8787
This gives us an error:
8888

8989
```text
90-
hello.rs:6:24: 6:25 error: mismatched types:
91-
expected `_`,
92-
found `&_`
93-
(expected integral variable,
94-
found &-ptr)
90+
hello.rs:6:24: 6:25 error: mismatched types: expected `_`, found `&_` (expected integral variable, found &-ptr)
9591
hello.rs:6 println!("{}", x + z);
9692
^
9793
```

0 commit comments

Comments
 (0)