Minor formatting updates

This commit is contained in:
Timothy Warren 2019-08-07 14:04:41 -04:00
parent d5aa2c6b61
commit 954844f6b3
2 changed files with 3 additions and 3 deletions

View File

@ -51,6 +51,6 @@ fn main() {
Err(err) => {
eprintln!("{}", err);
abort()
},
}
}
}
}

View File

@ -5,7 +5,7 @@ use std::collections::HashMap;
#[derive(Debug, Default)]
/// A key/value store
pub struct KvStore {
store: HashMap<String, String>
store: HashMap<String, String>,
}
impl KvStore {