0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 20:25:12 -05:00

chore(cli): fix typo in variable name (#12617)

This commit is contained in:
Dezső Mészáros 2021-10-31 22:34:58 +01:00 committed by GitHub
parent 61e9beaa7b
commit d080f1c965
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -272,8 +272,8 @@ fn human_elapsed(elapsed: u128) -> String {
let seconds = elapsed / 1_000;
let minutes = seconds / 60;
let seconds_reminder = seconds % 60;
format!("({}m{}s)", minutes, seconds_reminder)
let seconds_remainder = seconds % 60;
format!("({}m{}s)", minutes, seconds_remainder)
}
impl TestReporter for PrettyTestReporter {