From 9293607f8f485acc91be83bcc216ae01ed70b5fd Mon Sep 17 00:00:00 2001 From: Matt Roche Date: Sun, 18 Jan 2015 15:28:12 -0500 Subject: [PATCH] quick formatting fix --- src/doc/trpl/pointers.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/doc/trpl/pointers.md b/src/doc/trpl/pointers.md index fd839d17b205..29986d7f2357 100644 --- a/src/doc/trpl/pointers.md +++ b/src/doc/trpl/pointers.md @@ -87,11 +87,7 @@ println!("{}", x + z); This gives us an error: ```text -hello.rs:6:24: 6:25 error: mismatched types: - expected `_`, - found `&_` -(expected integral variable, - found &-ptr) +hello.rs:6:24: 6:25 error: mismatched types: expected `_`, found `&_` (expected integral variable, found &-ptr) hello.rs:6 println!("{}", x + z); ^ ```