summaryrefslogtreecommitdiffhomepage
path: root/fr-fr/fsharp-fr.html.markdown
diff options
context:
space:
mode:
authorven <vendethiel@hotmail.fr>2017-05-18 12:45:43 +0200
committerGitHub <noreply@github.com>2017-05-18 12:45:43 +0200
commitda3abd314b3e452299469dba3af95e73674a2bd4 (patch)
treeac6dc56be2bfe6e0c52e248a3da35d3b8a19c8e3 /fr-fr/fsharp-fr.html.markdown
parent53d56bb4659dd9f8ef03190ca87eacd11a62bbc6 (diff)
fixup #2446
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.
// ------------------------------------