Skip to content

Commit 29d5b12

Browse files
authored
Update multi_bounds.md (#158)
1 parent 33aabc6 commit 29d5b12

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/generics/multi_bounds.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ fn compare_prints<T: Debug + Display>(t: &T) {
1111
}
1212
1313
fn compare_types<T: Debug, U: Debug>(t: &T, u: &U) {
14-
println!("t: `{:?}", t);
15-
println!("u: `{:?}", u);
14+
println!("t: `{:?}`", t);
15+
println!("u: `{:?}`", u);
1616
}
1717
1818
fn main() {
@@ -33,4 +33,4 @@ fn main() {
3333
[`std::fmt`][fmt][`trait`][traits]
3434

3535
[fmt]: ../hello/print.md
36-
[traits]: ../trait.md
36+
[traits]: ../trait.md

0 commit comments

Comments
 (0)