diff --git a/doc/1_KC3/1.22_Tuple.en.md b/doc/1_KC3/1.22_Tuple.en.md
index 17a138e..a238c90 100644
--- a/doc/1_KC3/1.22_Tuple.en.md
+++ b/doc/1_KC3/1.22_Tuple.en.md
@@ -1,6 +1,12 @@
# 1.22 Tuple
-KC3 tuples are arrays of `Tag`.
+KC3 tuples are immutable arrays of `Tag`. They contain a fixed number of
+constant values of any type. Tuple access is very fast.
+
+Tuples can be used to return more than one value from a function.
+For example a successful function call might result in a
+`{:ok, result}` tuple, while an error might produce the
+`{:error, "Message", data, trace}` tuple.
## 1.22.1 Examples