diff --git a/samples/snippets/fsharp/lang-ref-1/snippet1901.fs b/samples/snippets/fsharp/lang-ref-1/snippet1901.fs index 807afd803b2e7..a23f58c8b131d 100644 --- a/samples/snippets/fsharp/lang-ref-1/snippet1901.fs +++ b/samples/snippets/fsharp/lang-ref-1/snippet1901.fs @@ -1,10 +1,10 @@ // Labels are separated by semicolons when defined on the same line. type Point = { X: float; Y: float; Z: float; } -// You can define labels on their own line with a semicolon. +// You can define labels on their own line with or without a semicolon. type Customer = { First: string - Last: string + Last: string; SSN: uint32 AccountNumber: uint32; } @@ -13,4 +13,4 @@ type Customer = type StructPoint = { X: float Y: float - Z: float } \ No newline at end of file + Z: float }