docs(mac-mapping): scrub dash-form of the real test-speaker MAC

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) <noreply@anthropic.com>
This commit is contained in:
Tobias Gesellchen
2026-05-17 22:05:13 +02:00
co-authored by Claude Opus 4.7
parent a76a112d92
commit 50f1c5980a
+2 -2
View File
@@ -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