Adjust margins for paperback version. Ensure nothing breaches the right margin.

This commit is contained in:
LukeMathWalker
2024-08-07 15:39:35 +02:00
parent 05e3efd298
commit f9a1d427b2
8 changed files with 19 additions and 15 deletions

View File

@@ -89,7 +89,8 @@ although a bit more cumbersome to read:
impl ::core::cmp::PartialEq for Ticket {
#[inline]
fn eq(&self, other: &Ticket) -> bool {
self.title == other.title && self.description == other.description
self.title == other.title
&& self.description == other.description
&& self.status == other.status
}
}