Update 03_variants_with_data.md (#264)

This commit is contained in:
Geert-Johan Riemer 2025-03-03 16:32:13 +01:00 committed by GitHub
parent b839c770b5
commit 21f3427c92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -64,7 +64,7 @@ match status {
println!("Assigned to: {}", assigned_to); println!("Assigned to: {}", assigned_to);
}, },
Status::ToDo | Status::Done => { Status::ToDo | Status::Done => {
println!("Done"); println!("ToDo or Done");
} }
} }
``` ```
@ -82,7 +82,7 @@ match status {
println!("Assigned to: {}", person); println!("Assigned to: {}", person);
}, },
Status::ToDo | Status::Done => { Status::ToDo | Status::Done => {
println!("Done"); println!("ToDo or Done");
} }
} }
``` ```