summaryrefslogtreecommitdiffstats
path: root/src/file/toml.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/file/toml.rs')
-rw-r--r--src/file/toml.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/file/toml.rs b/src/file/toml.rs
index 4de23ef..28a1507 100644
--- a/src/file/toml.rs
+++ b/src/file/toml.rs
@@ -47,7 +47,9 @@ fn from_toml_value(value: &toml::Value) -> Value {
Value::Array(l)
}
- _ => { unimplemented!(); }
+ _ => {
+ unimplemented!();
+ }
}
}