Rewording according to fmoko suggestion.

This commit is contained in:
Axel Viala 2020-10-10 13:59:29 +02:00
parent ddb23f17b8
commit 1b2ece2186

View file

@ -8,9 +8,9 @@
#[test]
fn indexing_tuple() {
let numbers = (1, 2, 3);
/// Replace below ??? by tuple indexing syntax.
/// Replace below ??? with the tuple indexing syntax.
let second = ???;
assert_eq!(2, second
"This is not the 2nd number of the tuple numbers")
"This is not the 2nd number in the tuple!")
}