aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/tutorial/fuzz.md
diff options
context:
space:
mode:
Diffstat (limited to '_content/doc/tutorial/fuzz.md')
-rw-r--r--_content/doc/tutorial/fuzz.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/_content/doc/tutorial/fuzz.md b/_content/doc/tutorial/fuzz.md
index 881ba8f9..f3916fe7 100644
--- a/_content/doc/tutorial/fuzz.md
+++ b/_content/doc/tutorial/fuzz.md
@@ -465,7 +465,8 @@ func Reverse(s string) string {
```
The key difference is that `Reverse` is now iterating over each `rune` in the
-string, rather than each `byte`.
+string, rather than each `byte`. Note that this is just an example, and does not
+handle [combining characters](https://en.wikipedia.org/wiki/Combining_character) correctly.
#### Run the code