This commit is contained in:
Jonas Schievink 2020-10-22 19:19:05 +02:00
parent 68b17986c7
commit 978cc93649
2 changed files with 2 additions and 1 deletions

View file

@ -137,7 +137,7 @@ impl fmt::Display for InactiveReason {
for (i, atom) in self.disabled.iter().enumerate() {
let sep = match i {
0 => "",
_ if i == self.enabled.len() - 1 => " and ",
_ if i == self.disabled.len() - 1 => " and ",
_ => ", ",
};
f.write_str(sep)?;