diff --git a/exercises/05_ticket_v2/03_variants_with_data/src/lib.rs b/exercises/05_ticket_v2/03_variants_with_data/src/lib.rs index 03faf0cd3d..d780702da2 100644 --- a/exercises/05_ticket_v2/03_variants_with_data/src/lib.rs +++ b/exercises/05_ticket_v2/03_variants_with_data/src/lib.rs @@ -1,6 +1,6 @@ // TODO: Implement `Ticket::assigned_to`. // Return the name of the person assigned to the ticket, if the ticket is in progress. -// Panic otherwise. +// Otherwise Panic with message - Only `In-Progress` tickets can be assigned to someone. #[derive(Debug, PartialEq)] struct Ticket {