Consisten placeholder for generics1.rs

This may have been a deliberate choice on the part of the author. As a newbie going through the exercises it seems inconsistent with the previous exercises which use `???` as placeholders.
This commit is contained in:
Jonathan Baugh 2021-06-05 21:40:11 +02:00 committed by GitHub
parent a2f0401c4c
commit ea0559f00e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,6 @@
// I AM NOT DONE // I AM NOT DONE
fn main() { fn main() {
let mut shopping_list: Vec<?> = Vec::new(); let mut shopping_list: Vec<???> = Vec::new();
shopping_list.push("milk"); shopping_list.push("milk");
} }