historian.rs - panic cleanup

This commit is contained in:
Jackson Sandland 2018-05-10 17:00:37 -07:00
parent b7a0bd6347
commit d69beaabe1
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ impl Historian {
}
pub fn receive(self: &Self) -> Result<Entry, TryRecvError> {
self.output.lock().expect("failed 'output' lock in Historian").try_recv()
self.output.lock().expect("'output' lock in pub fn receive").try_recv()
}
}