diff --git a/doc/1_KC3/1.1_Introduction.en.md b/doc/1_KC3/1.1_Introduction.en.md
index 0f08a18..6f6af20 100644
--- a/doc/1_KC3/1.1_Introduction.en.md
+++ b/doc/1_KC3/1.1_Introduction.en.md
@@ -79,8 +79,8 @@ Basic data types in KC3 are :
- Tuples : `Tuple`, e.g. `{:ok, 123}`
- Maps : `Map`, e.g. `%{id: 1, login: "dx"}`
- Structs : e.g. `%GL.Sphere{}`
- - Quoted code : `Quote`, e.g. `quote 1 + 2`
- - Identifiers : `Ident`, e.g. `quote hello`
+ - Quoted code : `Quote`, e.g. `quote quote 1 + 2`
+ - Identifiers : `Ident`, e.g. `quote List.map`
- Function or operator call : `Call`, e.g. `quote sqrt(1)`, `quote 1 + 2`
- Code blocks : `Block`, e.g. `{ 1 + 2; 3 + 4 }`
- Function : `Fn`, e.g. `fn (x) { x * 2 }`