diff options
author | sholland <holland_s91@yahoo.com> | 2015-10-26 22:21:02 -0500 |
---|---|---|
committer | sholland <holland_s91@yahoo.com> | 2015-10-26 22:21:02 -0500 |
commit | 469541783d5ef25395d6bfe343a414c383236468 (patch) | |
tree | 13e580f2a2b1e5d7b85a6155244f0c7c4d8db92f | |
parent | 44ca091c73afe13ec8760021cfed1d77afc5e4a5 (diff) |
[fsharp/en] correct a few simple mistakes
change github flavored markdown programming language to fsharp
correct typos
-rw-r--r-- | fsharp.html.markdown | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fsharp.html.markdown b/fsharp.html.markdown index 76318d7d..4cc233e3 100644 --- a/fsharp.html.markdown +++ b/fsharp.html.markdown @@ -16,7 +16,7 @@ The syntax of F# is different from C-style languages: If you want to try out the code below, you can go to [tryfsharp.org](http://www.tryfsharp.org/Create) and paste it into an interactive REPL. -```csharp +```fsharp // single line comments use a double slash (* multi line comments use (* . . . *) pair @@ -248,7 +248,7 @@ module SequenceExamples = // sequences can use yield and // can contain subsequences let strange = seq { - // "yield! adds one element + // "yield" adds one element yield 1; yield 2; // "yield!" adds a whole subsequence @@ -297,7 +297,7 @@ module DataTypeExamples = let person1 = {First="John"; Last="Doe"} // Pattern match to unpack - let {First=first} = person1 //sets first="john" + let {First=first} = person1 //sets first="John" // ------------------------------------ // Union types (aka variants) have a set of choices @@ -426,7 +426,7 @@ module ActivePatternExamples = // ----------------------------------- // You can create partial matching patterns as well - // Just use undercore in the defintion, and return Some if matched. + // Just use underscore in the defintion, and return Some if matched. let (|MultOf3|_|) i = if i % 3 = 0 then Some MultOf3 else None let (|MultOf5|_|) i = if i % 5 = 0 then Some MultOf5 else None |