fix(primitive_types6): remove 'unused doc comment' warning

This commit is contained in:
Matthew Smillie 2020-10-13 23:20:17 -07:00
parent 4fb230daf1
commit 472d8592d6
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
#[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,