Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Correct a typo
  • Loading branch information
koute committed Oct 5, 2021
commit 0294b77b05a8d7f19b3dcdd1eb5573f1484c243a
2 changes: 1 addition & 1 deletion client/tracing/src/logging/fast_local_time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl FormatTime for FastLocalTime {

let elapsed = SystemTime::now()
.duration_since(SystemTime::UNIX_EPOCH)
.expect("system time is never be before UNIX epoch; qed");
.expect("system time is never before UNIX epoch; qed");
let unix_time = elapsed.as_secs();

TIMESTAMP.with(|cache| {
Expand Down