diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -180,7 +180,7 @@ impl Value { for key in path.split('.') { match cur_value { &Table(ref hm) => { - match hm.find_with(|k| key.cmp(&k.as_slice())) { + match hm.find_with(|k| key.cmp(k.as_slice())) { Some(v) => cur_value = v, _ => return None } |