From f86be744f50c7194f65b64a5496f3aea601658e2 Mon Sep 17 00:00:00 2001 From: carverdamien Date: Wed, 29 Apr 2026 11:36:10 +0200 Subject: [PATCH] Fix comment about how time and duration are stored MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit formatMicroseconds and formatNanoseconds expect inputs in μs and ns. See switch(format) in formatFromMarkerSchema. --- src/types/markers.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/markers.ts b/src/types/markers.ts index 9f15b29104..c73ac50cb9 100644 --- a/src/types/markers.ts +++ b/src/types/markers.ts @@ -53,6 +53,7 @@ export type MarkerFormatType = // Numeric types // Note: All time and durations are stored as milliseconds. + // Except for microseconds and nanoseconds, which are stored in μs and ns. // For time data that represents a duration of time. // e.g. "Label: 5s, 5ms, 5μs"