From 2fcb4664e34e0fd9f8f62683997175d188e79536 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Sun, 28 Dec 2025 11:40:40 +0100 Subject: [PATCH] Update comment for "unique-string" String tables are now profile-wide instead of thread-local. --- src/types/markers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/markers.ts b/src/types/markers.ts index f5113a889f..7c2d63d4a8 100644 --- a/src/types/markers.ts +++ b/src/types/markers.ts @@ -34,7 +34,7 @@ export type MarkerFormatType = // sanitized. Please be careful with including other types of PII here as well. // e.g. "Label: Some String" | 'string' - /// An index into a (currently) thread-local string table, aka StringTable + /// An index into the profile's string table. /// This is effectively an integer, so wherever we need to display this value, we /// must first perform a lookup into the appropriate string table. | 'unique-string'