Fix instructions.

This commit is contained in:
LukeMathWalker 2024-05-14 10:05:25 +02:00
parent ae7769d879
commit 2c044a2567
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ enum TicketNewError {}
// TODO: `easy_ticket` should panic when the title is invalid, using the error message // TODO: `easy_ticket` should panic when the title is invalid, using the error message
// stored inside the relevant variant of the `TicketNewError` enum. // stored inside the relevant variant of the `TicketNewError` enum.
// When the description is invalid, instead, it should use a default description: // When the description is invalid, instead, it should use a default description:
// "No description provided". // "Description not provided".
fn easy_ticket(title: String, description: String, status: Status) -> Ticket { fn easy_ticket(title: String, description: String, status: Status) -> Ticket {
todo!() todo!()
} }