summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorMatthew Smillie <mbs@tmkf.local>2020-10-13 23:18:41 -0700
committerMatthew Smillie <mbs@tmkf.local>2020-10-13 23:18:41 -0700
commit4fb230daf1251444fcf29e085cee222a91f8a37e (patch)
treeab59b0362a6ca9756c6724e6f125792e2a71e5b2 /exercises
parente6bde22f9c65e1da07602021d759ab702f7317d4 (diff)
fix(primitive_types6): missing comma in test
Diffstat (limited to 'exercises')
-rw-r--r--exercises/primitive_types/primitive_types6.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/primitive_types/primitive_types6.rs b/exercises/primitive_types/primitive_types6.rs
index 5c6c5a4..0fa42b2 100644
--- a/exercises/primitive_types/primitive_types6.rs
+++ b/exercises/primitive_types/primitive_types6.rs
@@ -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!")
}