Skip to content

Commit 21f3427

Browse files
authored
Update 03_variants_with_data.md (#264)
1 parent b839c77 commit 21f3427

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/src/05_ticket_v2/03_variants_with_data.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ match status {
6464
println!("Assigned to: {}", assigned_to);
6565
},
6666
Status::ToDo | Status::Done => {
67-
println!("Done");
67+
println!("ToDo or Done");
6868
}
6969
}
7070
```
@@ -82,7 +82,7 @@ match status {
8282
println!("Assigned to: {}", person);
8383
},
8484
Status::ToDo | Status::Done => {
85-
println!("Done");
85+
println!("ToDo or Done");
8686
}
8787
}
8888
```

0 commit comments

Comments
 (0)