We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f839fc0 commit c437f75Copy full SHA for c437f75
exercises/03_ticket_v1/02_validation/src/lib.rs
@@ -12,6 +12,7 @@ impl Ticket {
12
// - the `title` should be at most 50 bytes long.
13
// - the `description` should be at most 500 bytes long.
14
// The method should panic if any of the requirements are not met.
15
+ // You can find the needed panic messages in the tests.
16
//
17
// You'll have to use what you learned in the previous exercises,
18
// as well as some `String` methods. Use the documentation of Rust's standard library
0 commit comments