Merge pull request #561 from notmatt/mbs-fixups

This commit is contained in:
fmoko 2020-10-14 17:22:49 +02:00 committed by GitHub
commit f38f42f17d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@
#[test]
fn indexing_tuple() {
let numbers = (1, 2, 3);
/// Replace below ??? with the tuple indexing syntax.
// 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!")
}