From fbb1f2e52ee71ef79b5447b9c0bbb363f312b4f4 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Thu, 5 Dec 2024 23:08:00 -0600 Subject: [PATCH] cleanup comment --- packages/acn/src/pdu/sdt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/acn/src/pdu/sdt.ts b/packages/acn/src/pdu/sdt.ts index d9b2252..721292c 100644 --- a/packages/acn/src/pdu/sdt.ts +++ b/packages/acn/src/pdu/sdt.ts @@ -16,7 +16,7 @@ export function decode(bytes: Uint8Array): SessionDataTransportPDU { const dataFlag = (flags & 0x1) === 1; if (!dataFlag) { - // TODO(jwetzell): idk know if this is true + // TODO(jwetzell): idk if this is true throw new Error('SDT PDU must have data'); }