update v3

This commit is contained in:
Able 2023-05-03 03:43:59 -05:00
parent 94b744b194
commit 10d4c4c32c

View file

@ -25,7 +25,7 @@ impl fmt::Display for Attribute {
impl Attribute {
pub fn to_string(&self) -> String {
format!("{:?}={:?}", self.name, self.value)
format!("{} = {}", self.name, self.value)
}
}
#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]