From a5fc35f0d5dddf5310586a13ea426f254062e6ab Mon Sep 17 00:00:00 2001 From: Firas Khalil Khana Date: Sat, 1 May 2021 13:21:56 +0300 Subject: [PATCH] Fix typo in 19-strings-runes-bytes-04-02 --- 19-strings-runes-bytes/04-rune-decoding/02/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19-strings-runes-bytes/04-rune-decoding/02/main.go b/19-strings-runes-bytes/04-rune-decoding/02/main.go index 966972f..122fdbe 100644 --- a/19-strings-runes-bytes/04-rune-decoding/02/main.go +++ b/19-strings-runes-bytes/04-rune-decoding/02/main.go @@ -23,7 +23,7 @@ func main() { // you need to find the starting and ending position of the first rune // 1st way: `for range` - // you can't get the runes by range overing a byte slice + // you can't get the runes by ranging over a byte slice // first, you need to convert it to a string var size int for i := range string(word) {