From 85b98f6dd8aaf63acef58fea904dd81f6e5cbaf6 Mon Sep 17 00:00:00 2001 From: tasshi / Masaharu TASHIRO <33759872+mshrtsr@users.noreply.github.com> Date: Tue, 15 Sep 2020 11:48:49 +0900 Subject: fix typo miliseconds -> milliseconds (#7469) --- std/encoding/_yaml/type/timestamp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/encoding') diff --git a/std/encoding/_yaml/type/timestamp.ts b/std/encoding/_yaml/type/timestamp.ts index 231908231..9379b907d 100644 --- a/std/encoding/_yaml/type/timestamp.ts +++ b/std/encoding/_yaml/type/timestamp.ts @@ -70,7 +70,7 @@ function constructYamlTimestamp(data: string): Date { if (match[9]) { const tzHour = +match[10]; const tzMinute = +(match[11] || 0); - delta = (tzHour * 60 + tzMinute) * 60000; // delta in mili-seconds + delta = (tzHour * 60 + tzMinute) * 60000; // delta in milli-seconds if (match[9] === "-") delta = -delta; } -- cgit v1.2.3