diff --git a/doc/1_KC3/1.22_Tuple.en.md b/doc/1_KC3/1.22_Tuple.en.md
index 59627d8..9ba612b 100644
--- a/doc/1_KC3/1.22_Tuple.en.md
+++ b/doc/1_KC3/1.22_Tuple.en.md
@@ -1,45 +1,39 @@
-# 1.21 Map
+# 1.22 Tuple
-KC3 maps are like Elixir maps, they are key-values enclosed in `%{}` :
+KC3 tuples are arrays of `Tag`.
+
+## 1.22.1 Examples
```elixir
-ikc3> a = %{id: 1, title: "My title", message: "Hello, world !"}
-%{id: 1,
- title: "My title",
- message: "Hello, world !"}
+ikc3> a = {:ok, "My title", "Hello, world !"}
+{:ok, "My title", "Hello, world !"}
```
-Destructuring works with maps to extract values :
+Destructuring works with tuples to extract values :
```elixir
-ikc3> %{id: id, title: "My title", message: message} = ^ a
-%{id: 1,
- title: "My title",
- message: "Hello, world !"}
-ikc3> id
-1
+ikc3> {:ok, title, message} = ^ a
+{:ok, "My title", "Hello, world !"}
+ikc3> title
+"My title"
ikc3> message
"Hello, world !"
```
-
-You can use the dot syntax to access map values from a `Sym` key :
+You can also use the `KC3.access` function for the same result :
```elixir
-ikc3> a = %{id: 1, title: "My title", message: "Hello, world !"}
-%{id: 1,
- title: "My title",
- message: "Hello, world !"}
-ikc3> a.id
-1
-ikc3> a.message
+ikc3> a = {:ok, "My title", "Hello, world !"}
+{:ok, "My title", "Hello, world !"}
+ikc3> access(a, 0)
+:ok
+ikc3> access(a, 1)
+"My title"
+ikc3> access(a, 2)
"Hello, world !"
```
-You can also use the `KC3.access` function for the same result :
-
-```elixir
-ikc3> a = %{id: 1, title: "My title", message: "Hello, world !"}
+ikc3> a = {id: 1, title: "My title", message: "Hello, world !"}
%{id: 1,
title: "My title",
message: "Hello, world !"}
@@ -48,19 +42,3 @@ ikc3> access(a, :id)
ikc3> access(a, :message)
"Hello, world !"
```
-
-To update an existing map you can use Map.put like this :
-
-```elixir
-ikc3> a = %{id: 1, title: "My title"}
-%{id: 1,
- title: "My title"}
-ikc3> a = Map.put(a, :message, "Hello, world !")
-%{id: 1,
- title: "My title",
- message: "Hello, world !"}
-```
-
----
-
-Top : [KC3 documentation](/doc/)