Skip to content

Commit

Permalink
fix(primitive_types6): missing comma in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Smillie committed Oct 14, 2020
1 parent e6bde22 commit 4fb230d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/primitive_types/primitive_types6.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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!")
}

0 comments on commit 4fb230d

Please sign in to comment.