Skip to content

Commit e7dfa39

Browse files
authored
Merge pull request #1129 from bartsmykla/missing-backtics-in-multi-bounds
Added two missing backticks in generics/multi_bounds
2 parents 35a19ff + 6e903a2 commit e7dfa39

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)