From da3abd314b3e452299469dba3af95e73674a2bd4 Mon Sep 17 00:00:00 2001 From: ven Date: Thu, 18 May 2017 12:45:43 +0200 Subject: [PATCH] fixup #2446 --- fr-fr/fsharp-fr.html.markdown | 4 ++-- 1 file 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. // ------------------------------------