From 6e903a2fe08a7aca7ef3635ae1586be1e37c1596 Mon Sep 17 00:00:00 2001 From: Bart Smykla Date: Sun, 16 Dec 2018 17:11:08 +0100 Subject: [PATCH] Added two missing backticks in generics/multi_bounds Just small fix, adding two missing backticks in generics/multi_bounds Signed-off-by: Bart Smykla --- src/generics/multi_bounds.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generics/multi_bounds.md b/src/generics/multi_bounds.md index 9c1dfb6680..c563282bcb 100644 --- a/src/generics/multi_bounds.md +++ b/src/generics/multi_bounds.md @@ -12,8 +12,8 @@ fn compare_prints(t: &T) { } fn compare_types(t: &T, u: &U) { - println!("t: `{:?}", t); - println!("u: `{:?}", u); + println!("t: `{:?}`", t); + println!("u: `{:?}`", u); } fn main() {