Fix instructions.
authorLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Tue, 14 May 2024 08:05:25 +0000 (10:05 +0200)
committerLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Tue, 14 May 2024 08:05:25 +0000 (10:05 +0200)
exercises/05_ticket_v2/08_error_enums/src/lib.rs

index 791ee13..5fd4252 100644 (file)
@@ -6,7 +6,7 @@ enum TicketNewError {}
 // TODO: `easy_ticket` should panic when the title is invalid, using the error message
 //   stored inside the relevant variant of the `TicketNewError` enum.
 //   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 {
     todo!()
 }