From e9982226063aabbb4c9972ccb7fb9af10842fb40 Mon Sep 17 00:00:00 2001 From: genwhittTTD Date: Wed, 7 Jan 2026 11:19:00 -0500 Subject: [PATCH 1/2] Normalization: update Sydney phone number example to mobile --- docs/getting-started/gs-normalization-encoding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/gs-normalization-encoding.md b/docs/getting-started/gs-normalization-encoding.md index 7e63db007..faa6d8f4c 100644 --- a/docs/getting-started/gs-normalization-encoding.md +++ b/docs/getting-started/gs-normalization-encoding.md @@ -135,7 +135,7 @@ Here's what you need to know about phone number normalization rules: Examples: - US: `1 (234) 567-8901` is normalized to `+12345678901`. - Singapore: `65 1243 5678` is normalized to `+6512345678`. - - Sydney, Australia: `(02) 1234 5678` is normalized to drop the leading zero for the city plus include the country code: `+61212345678`. + - Australia: mobile phone number `(0401) 234 567` is normalized to drop the leading zero for the city plus include the country code: `+61401234567`. :::warning Make sure that the normalized phone number is UTF-8, not another encoding system such as UTF-16. From ac56bec3cb1070fc701d8da943081c51788a1b22 Mon Sep 17 00:00:00 2001 From: genwhittTTD Date: Thu, 8 Jan 2026 09:28:07 -0500 Subject: [PATCH 2/2] edit to Australian phone example --- docs/getting-started/gs-normalization-encoding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/gs-normalization-encoding.md b/docs/getting-started/gs-normalization-encoding.md index faa6d8f4c..fe9fb5925 100644 --- a/docs/getting-started/gs-normalization-encoding.md +++ b/docs/getting-started/gs-normalization-encoding.md @@ -135,7 +135,7 @@ Here's what you need to know about phone number normalization rules: Examples: - US: `1 (234) 567-8901` is normalized to `+12345678901`. - Singapore: `65 1243 5678` is normalized to `+6512345678`. - - Australia: mobile phone number `(0401) 234 567` is normalized to drop the leading zero for the city plus include the country code: `+61401234567`. + - Australia: mobile phone number `0491 570 006` is normalized to add the country code and drop the leading zero: `+61491570006`. :::warning Make sure that the normalized phone number is UTF-8, not another encoding system such as UTF-16.