diff --git a/examples/strings-and-runes/strings-and-runes.go b/examples/strings-and-runes/strings-and-runes.go index d46b99a..3697481 100644 --- a/examples/strings-and-runes/strings-and-runes.go +++ b/examples/strings-and-runes/strings-and-runes.go @@ -17,7 +17,7 @@ import ( func main() { // `s` is a `string` assigned a literal value - // representing the world "hello" in the Thai + // representing the word "hello" in the Thai // language. Go string literals are UTF-8 // encoded text. const s = "สวัสดี" diff --git a/public/strings-and-runes b/public/strings-and-runes index 689669d..028ca7b 100644 --- a/public/strings-and-runes +++ b/public/strings-and-runes @@ -82,7 +82,7 @@ introduction to the topic.
s
is a string
assigned a literal value
-representing the world “hello” in the Thai
+representing the word “hello” in the Thai
language. Go string literals are UTF-8
encoded text.