From a14fe18c018c89a76c1a0b9057c9f34f6ef71b1d Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Fri, 12 Dec 2025 07:34:37 -0600 Subject: [PATCH] wording --- docs/docs/configuration/license_plate_recognition.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/license_plate_recognition.md b/docs/docs/configuration/license_plate_recognition.md index 777ac5118..9134349d0 100644 --- a/docs/docs/configuration/license_plate_recognition.md +++ b/docs/docs/configuration/license_plate_recognition.md @@ -122,7 +122,7 @@ lpr: replacement: "0" - pattern: "I" # Swap 'I' to '1' replacement: "1" - - pattern: '(\w{3})(\w{3})' # Split 6 chars into groups (e.g., ABC123 → ABC-123) - use single quotes preserve backslashes + - pattern: '(\w{3})(\w{3})' # Split 6 chars into groups (e.g., ABC123 → ABC-123) - use single quotes to preserve backslashes replacement: '\1-\2' ```