1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-04 22:07:52 +02:00

Merge pull request #1924 from nyanfly/master

Make whitespace more consistent
This commit is contained in:
Adam Bard
2015-10-31 18:21:21 +08:00

View File

@@ -284,7 +284,7 @@ module DataTypeExamples =
let threeTuple = "a", 2, true
// Pattern match to unpack
let x,y = twoTuple //sets x=1 y=2
let x, y = twoTuple // sets x = 1, y = 2
// ------------------------------------
// Record types have named fields