summaryrefslogtreecommitdiffstats
path: root/src/value.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/value.rs')
-rw-r--r--src/value.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.rs b/src/value.rs
index 528e1a9..1630d85 100644
--- a/src/value.rs
+++ b/src/value.rs
@@ -77,7 +77,7 @@ impl Value {
pub fn as_map(&self) -> Option<&HashMap<String, Value>> {
match *self {
Value::Table(ref value) => Some(value),
- _ => None
+ _ => None,
}
}
/// Gets the underlying type as a slice; only works if the type is actually a slice.