mirror of
https://github.com/Dummi26/mers.git
synced 2025-12-20 05:56:31 +01:00
adjusted list syntax to be [<content> ...] to create a visual difference from tuples, which don't have the ... before the ].
This commit is contained in:
@@ -832,6 +832,10 @@ impl Display for VDataEnum {
|
||||
for v in v {
|
||||
write!(f, "{v}")?;
|
||||
}
|
||||
match self {
|
||||
Self::List(..) => write!(f, "...")?,
|
||||
_ => (),
|
||||
}
|
||||
write!(f, "]")?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user