fix syntax with comma (#89)

Example doesn't compile with a comma here
This commit is contained in:
Ernie Hershey 2024-06-20 04:21:33 -04:00 committed by GitHub
parent 468de3c0ac
commit d8d7e73f1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,7 @@ impl Ticket {
match &self.status {
Status::InProgress { assigned_to } => assigned_to,
Status::Done | Status::ToDo => {
panic!("Only `In-Progress` tickets can be assigned to someone"),
panic!("Only `In-Progress` tickets can be assigned to someone")
}
}
}