From 90caadf797b6d5e3c08fcf6a377d24e420941bd6 Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Tue, 14 May 2024 10:52:46 +0200 Subject: [PATCH] Use more precise language in task assignment. --- exercises/03_ticket_v1/02_validation/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/03_ticket_v1/02_validation/src/lib.rs b/exercises/03_ticket_v1/02_validation/src/lib.rs index 59b0eaa..25e43a9 100644 --- a/exercises/03_ticket_v1/02_validation/src/lib.rs +++ b/exercises/03_ticket_v1/02_validation/src/lib.rs @@ -9,8 +9,8 @@ impl Ticket { // The following requirements should be met: // - Only `To-Do`, `In Progress`, and `Done` statuses are allowed. // - The `title` and `description` fields should not be empty. - // - the `title` should be at most 50 characters long. - // - the `description` should be at most 500 characters long. + // - the `title` should be at most 50 bytes long. + // - the `description` should be at most 500 bytes long. // The method should panic if any of the requirements are not met. // // You'll have to use what you learned in the previous exercises, -- 2.45.2