Remove ambiguity in 03/07 exercise mandate.
authorLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Thu, 23 May 2024 12:39:43 +0000 (14:39 +0200)
committerLukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com>
Thu, 23 May 2024 12:39:43 +0000 (14:39 +0200)
exercises/03_ticket_v1/07_setters/src/lib.rs

index 9aa4301..e13ec87 100644 (file)
@@ -1,6 +1,7 @@
 // TODO: Add &mut-setters to the `Ticket` struct for each of its fields.
 //   Make sure to enforce the same validation rules you have in `Ticket::new`!
-//   Even better, extract that logic into private methods and reuse it in both places.
+//   Even better, extract that logic and reuse it in both places. You can use
+//   private functions or private static methods for that.
 
 pub struct Ticket {
     title: String,