diff --git a/src/value/ops.rs b/src/value/ops.rs index 5ae5580..e101817 100644 --- a/src/value/ops.rs +++ b/src/value/ops.rs @@ -38,7 +38,9 @@ impl Add for Value { Self::Ident(s, QuoteKind::Double) | Self::Ident(s, QuoteKind::Single) => { Value::Ident(format!("{}{}", c, s), QuoteKind::Double) } - Self::Ident(s, QuoteKind::None) => Value::Ident(format!("{}{}", c, s), QuoteKind::None), + Self::Ident(s, QuoteKind::None) => { + Value::Ident(format!("{}{}", c, s), QuoteKind::None) + } Self::Null => Value::Ident(c.to_string(), QuoteKind::None), _ => return Err(format!("Undefined operation \"{} + {}\".", c, other).into()), },