From 50f1c5980a6e8ce993add04b22d40f36e1a35ecd Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Sun, 17 May 2026 20:23:31 +0200 Subject: [PATCH] docs(mac-mapping): scrub dash-form of the real test-speaker MAC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The earlier MAC sweep in 04f9c31 only matched the colon form (A8:1B:6A:53:6A:98). MAC-ADDRESS-MAPPING.md documents the normalisation behaviour with separator variants, so it also carried the dash form (A8-1B-6A-53-6A-98) — 2 hits both replaced with the canonical AA-BB-CC-DD-EE-FF placeholder. Surfaced by the post-cleanup re-scan. Co-Authored-By: Claude Opus 4.7 (1M context) --- docs/guides/MAC-ADDRESS-MAPPING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/MAC-ADDRESS-MAPPING.md b/docs/guides/MAC-ADDRESS-MAPPING.md index 2a14752..d9aa82e 100644 --- a/docs/guides/MAC-ADDRESS-MAPPING.md +++ b/docs/guides/MAC-ADDRESS-MAPPING.md @@ -54,7 +54,7 @@ The service handles all common MAC address formats automatically: | Standard | `AABBCCDDEEFF` | ✅ Supported | | Lowercase | `a81b6a536a98` | ✅ Supported | | With Colons | `AA:BB:CC:DD:EE:FF` | ✅ Supported | -| With Dashes | `A8-1B-6A-53-6A-98` | ✅ Supported | +| With Dashes | `AA-BB-CC-DD-EE-FF` | ✅ Supported | | Mixed Case | `a81B6a536A98` | ✅ Supported | | With Spaces | ` AABBCCDDEEFF ` | ✅ Supported | @@ -187,7 +187,7 @@ For developers interested in the technical details: // 2. Converting to uppercase // Examples: // "a8:1b:6a:53:6a:98" → "AABBCCDDEEFF" -// "A8-1B-6A-53-6A-98" → "AABBCCDDEEFF" +// "AA-BB-CC-DD-EE-FF" → "AABBCCDDEEFF" ``` ### Lookup Process