Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 7e5f0a7

Browse files
committed
cargo fix
1 parent ca0456b commit 7e5f0a7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rls-analysis/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,10 @@ impl<L: AnalysisLoader> AnalysisHost<L> {
402402
});
403403

404404
let time = t_start.elapsed();
405-
info!("search: {}s", time.as_secs() as f64 + f64::from(time.subsec_nanos()) / 1_000_000_000.0);
405+
info!(
406+
"search: {}s",
407+
time.as_secs() as f64 + f64::from(time.subsec_nanos()) / 1_000_000_000.0
408+
);
406409
result
407410
}
408411

0 commit comments

Comments
 (0)