Skip to content

Commit 6e903a2

Browse files
author
Bart Smykla
committed
Added two missing backticks in generics/multi_bounds
Just small fix, adding two missing backticks in generics/multi_bounds Signed-off-by: Bart Smykla <[email protected]>
1 parent 843cc35 commit 6e903a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/generics/multi_bounds.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ fn compare_prints<T: Debug + Display>(t: &T) {
1212
}
1313
1414
fn compare_types<T: Debug, U: Debug>(t: &T, u: &U) {
15-
println!("t: `{:?}", t);
16-
println!("u: `{:?}", u);
15+
println!("t: `{:?}`", t);
16+
println!("u: `{:?}`", u);
1717
}
1818
1919
fn main() {

0 commit comments

Comments
 (0)