bytes,strings: use a more universal Cyrillic word

The word "брат" (brother) is the same across Slavic languages that
use the Cyrillic script, such as Bulgarian, Macedonian, Russian,
Ukrainian, and others.

Change-Id: I5155e6bb16a02dec5d93a01b79f9570f43f09444
Reviewed-on: https://go-review.googlesource.com/c/go/+/603535
Reviewed-by: Robert Griesemer <gri@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Robert Griesemer <gri@google.com>
Reviewed-by: David Chase <drchase@google.com>
This commit is contained in:
Oleksandr Redko 2024-08-06 20:16:42 +03:00 committed by Gopher Robot
parent b97971ea2e
commit 5a81570bf2
2 changed files with 6 additions and 6 deletions

View File

@ -502,10 +502,10 @@ func ExampleTitle() {
func ExampleToTitle() {
fmt.Printf("%s\n", bytes.ToTitle([]byte("loud noises")))
fmt.Printf("%s\n", bytes.ToTitle([]byte("хлеб")))
fmt.Printf("%s\n", bytes.ToTitle([]byte("брат")))
// Output:
// LOUD NOISES
// ХЛЕБ
// БРАТ
}
func ExampleToTitleSpecial() {

View File

@ -328,22 +328,22 @@ func ExampleTitle() {
// Compare this example to the ToTitle example.
fmt.Println(strings.Title("her royal highness"))
fmt.Println(strings.Title("loud noises"))
fmt.Println(strings.Title("хлеб"))
fmt.Println(strings.Title("брат"))
// Output:
// Her Royal Highness
// Loud Noises
// Хлеб
// Брат
}
func ExampleToTitle() {
// Compare this example to the Title example.
fmt.Println(strings.ToTitle("her royal highness"))
fmt.Println(strings.ToTitle("loud noises"))
fmt.Println(strings.ToTitle("хлеб"))
fmt.Println(strings.ToTitle("брат"))
// Output:
// HER ROYAL HIGHNESS
// LOUD NOISES
// ХЛЕБ
// БРАТ
}
func ExampleToTitleSpecial() {