5793: Minor
 r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
bors[bot] 2020-08-18 11:20:54 +00:00 committed by GitHub
commit 5dfb1e054a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@ pub fn timeit(label: &'static str) -> impl Drop {
impl Drop for Guard {
fn drop(&mut self) {
eprintln!("{}: {:?}", self.label, self.start.elapsed())
eprintln!("{}: {:.2?}", self.label, self.start.elapsed())
}
}