1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-29 15:31:23 +02:00

fix(primitive_types6): missing comma in test

This commit is contained in:
Matthew Smillie 2020-10-13 23:18:41 -07:00
parent e6bde22f9c
commit 4fb230daf1

@ -11,6 +11,6 @@ fn indexing_tuple() {
/// Replace below ??? with the tuple indexing syntax.
let second = ???;
assert_eq!(2, second
assert_eq!(2, second,
"This is not the 2nd number in the tuple!")
}