summaryrefslogtreecommitdiffstats
path: root/src/file/format/hjson.rs
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2018-07-02 15:33:38 -0700
committerRyan Leckey <leckey.ryan@gmail.com>2018-07-02 15:33:38 -0700
commitcbb9ef88ea6f6452614dd8bbffce7203b1358a55 (patch)
treefd4f67587f9a36c517a3a3f1ff7ef727697d5fef /src/file/format/hjson.rs
parentbbc78d85610dec79aa4af4dd360131c7880efb5f (diff)
Run rustfmt (nightly)
Diffstat (limited to 'src/file/format/hjson.rs')
-rw-r--r--src/file/format/hjson.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file/format/hjson.rs b/src/file/format/hjson.rs
index 3d4ad1b..bb21e38 100644
--- a/src/file/format/hjson.rs
+++ b/src/file/format/hjson.rs
@@ -27,7 +27,7 @@ fn from_hjson_value(uri: Option<&String>, value: &serde_hjson::Value) -> Value {
serde_hjson::Value::U64(value) => Value::new(uri, ValueKind::Integer(value as i64)),
serde_hjson::Value::F64(value) => Value::new(uri, ValueKind::Float(value)),
-
+
serde_hjson::Value::Bool(value) => Value::new(uri, ValueKind::Boolean(value)),
serde_hjson::Value::Object(ref table) => {