summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--exercises/primitive_types/primitive_types6.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/primitive_types/primitive_types6.rs b/exercises/primitive_types/primitive_types6.rs
index 5c6c5a4..b8c9b82 100644
--- a/exercises/primitive_types/primitive_types6.rs
+++ b/exercises/primitive_types/primitive_types6.rs
@@ -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!")
}