From a4cd8ae02c84267dd6d3cf3b5881f9c960373ceb Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Sat, 22 Feb 2020 11:59:33 -0500 Subject: [PATCH] rustfmt --- src/value/ops.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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()), },