Commit b9455d8d89ec90bb499ce04343a8b54d546a0cb9

Thomas de Grivel 2024-09-16T05:40:21

doc

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 }`