From: Gökhan Özeloğlu Date: Fri, 16 Aug 2024 20:41:25 +0000 (+0300) Subject: strings: fix typo in examples X-Git-Tag: go1.24rc1~1178 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0b23e477a2ca6056a61d6040f0763997a30b3486;p=gostls13.git strings: fix typo in examples The correct word can be seen in lines 381-382. Change-Id: If3876bd34b6433b69531763f63af88d60a0bfad0 Reviewed-on: https://go-review.googlesource.com/c/go/+/606375 LUCI-TryBot-Result: Go LUCI Reviewed-by: Ian Lance Taylor Auto-Submit: Ian Lance Taylor Reviewed-by: Carlos Amedee --- diff --git a/src/strings/example_test.go b/src/strings/example_test.go index 413d1bf997..08efcbf68f 100644 --- a/src/strings/example_test.go +++ b/src/strings/example_test.go @@ -388,8 +388,8 @@ func ExampleToLower() { } func ExampleToLowerSpecial() { - fmt.Println(strings.ToLowerSpecial(unicode.TurkishCase, "Önnek İş")) - // Output: önnek iş + fmt.Println(strings.ToLowerSpecial(unicode.TurkishCase, "Örnek İş")) + // Output: örnek iş } func ExampleTrim() {