summaryrefslogtreecommitdiffstats
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs
index b88b812..b3e296b 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -91,7 +91,7 @@ impl<'a> ConfigStore<'a> {
// Check sources
for source in &mut sources.iter().rev() {
if let Some(value) = source.get(key) {
- return Some(value)
+ return Some(value);
}
}