Update Examples

Glen Whitney 2024-08-24 16:47:22 +00:00
parent b01ccc1a85
commit 7b4b9d94f4

@ -472,7 +472,7 @@ fn main() {
</td><td> </td><td>
``` ```
// use crate::List::*; //! Unneeded bc of match auto-import // use crate::List::*; //! Unneeded: match auto-imports
enum List enum List
Cons(u32, Box<List>) Cons(u32, Box<List>)
@ -498,6 +498,11 @@ impl List
fn main fn main
let mut list = List::new() let mut list = List::new()