From: Loup Federico <16464925+Sh099078@users.noreply.github.com> Date: Sat, 18 May 2024 15:54:50 +0000 (+0200) Subject: Fix typo in 05_ticket_v2/09_error_trait/[...] instructions (#13) X-Git-Url: http://git.euphorik.ch/?a=commitdiff_plain;h=1d9ba4c25c4a9a0115a0b4fbb6f1ae92c75cd900;p=rust_exercises.git Fix typo in 05_ticket_v2/09_error_trait/[...] instructions (#13) The commented instructions of the exercise ask to use `No description provided` for the description field when calling `easy_ticket` with an invalid description argument. However, the unit test of that behavior compares the description to `Description not provided` instead. Previous exercises in that part also use `Description not provided`. Update the exercise 05_ticket_v2/09_error_trait instructions to use `Description not provided` as an expected default description value when calling `easy_ticket` with no description instead of `No description provided`. --- diff --git a/exercises/05_ticket_v2/09_error_trait/src/lib.rs b/exercises/05_ticket_v2/09_error_trait/src/lib.rs index ca89efc..3927775 100644 --- a/exercises/05_ticket_v2/09_error_trait/src/lib.rs +++ b/exercises/05_ticket_v2/09_error_trait/src/lib.rs @@ -11,7 +11,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!() }