We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c86e5d commit 625c981Copy full SHA for 625c981
jira-wip/src/koans/02_ticket_store/07_vec.rs
@@ -41,9 +41,10 @@ mod vec {
41
42
/// List will return a `Vec`.
43
/// Check the Rust book for a primer: https://doc.rust-lang.org/book/ch08-01-vectors.html
44
- /// The Rust documentation for HashMap will also be handy: https://doc.rust-lang.org/std/collections/struct.HashMap.html
+ /// The Rust documentation for `HashMap` will also be handy:
45
+ /// https://doc.rust-lang.org/std/collections/struct.HashMap.html
46
pub fn list(&self) -> Vec<&Ticket> {
- __
47
+ todo!()
48
}
49
50
fn generate_id(&mut self) -> TicketId {
0 commit comments