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) => { Err(err) => {
eprintln!("{}", err); eprintln!("{}", err);
abort() abort()
}, }
} }
} }

View File

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