summaryrefslogtreecommitdiffhomepage
path: root/fr-fr/fsharp-fr.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'fr-fr/fsharp-fr.html.markdown')
-rw-r--r--fr-fr/fsharp-fr.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/fr-fr/fsharp-fr.html.markdown b/fr-fr/fsharp-fr.html.markdown
index 7336c6aa..cab22e8a 100644
--- a/fr-fr/fsharp-fr.html.markdown
+++ b/fr-fr/fsharp-fr.html.markdown
@@ -295,14 +295,14 @@ module DataTypeExamples =
// On utilise "type" avec des accolades pour définir un type record
type Person = {First:string; Last:string}
- // On utilise "let" avec des accolades pour créer un record
+ // On utilise "let" avec des accolades pour créer un record (enregistrement)
let person1 = {First="John"; Last="Doe"}
// Pattern match pour déballer
let {First=first} = person1 // assigne first="john"
// ------------------------------------
- // Union types (aka variants) ont un set de choix
+ // Union types (ou variants) ont un set (ensemble) de choix
// Un seul cas peut être valide à la fois.
// ------------------------------------