summaryrefslogtreecommitdiffstats
path: root/src/file/format/hjson.rs
diff options
context:
space:
mode:
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 bb21e38..cb0a064 100644
--- a/src/file/format/hjson.rs
+++ b/src/file/format/hjson.rs
@@ -34,7 +34,7 @@ fn from_hjson_value(uri: Option<&String>, value: &serde_hjson::Value) -> Value {
let mut m = HashMap::new();
for (key, value) in table {
- m.insert(key.to_lowercase().clone(), from_hjson_value(uri, value));
+ m.insert(key.clone(), from_hjson_value(uri, value));
}
Value::new(uri, ValueKind::Table(m))