diff options
author | Spurlow <Spurlow@users.noreply.github.com> | 2015-11-02 19:07:44 +0800 |
---|---|---|
committer | Spurlow <Spurlow@users.noreply.github.com> | 2015-11-02 19:07:44 +0800 |
commit | c5d7f6e72e8eda544849b933019b3e7e1f802ff2 (patch) | |
tree | 9249047d8cf9dd6f7f96b80a46909ea676518e98 /fsharp.html.markdown | |
parent | c40f6a0c22d59f4b15d99bb93dabdbc34d989118 (diff) | |
parent | 4edbfa9e0394a4abb9301391cdebcc857559a5c7 (diff) |
Merge pull request #1764 from amrue/fsharp
[fsharp/en] Fixed two typos
Diffstat (limited to 'fsharp.html.markdown')
-rw-r--r-- | fsharp.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fsharp.html.markdown b/fsharp.html.markdown index d63b9f1d..809a1da2 100644 --- a/fsharp.html.markdown +++ b/fsharp.html.markdown @@ -335,10 +335,10 @@ module DataTypeExamples = let worker = Worker jdoe // ------------------------------------ - // Modelling with types + // Modeling with types // ------------------------------------ - // Union types are great for modelling state without using flags + // Union types are great for modeling state without using flags type EmailAddress = | ValidEmailAddress of string | InvalidEmailAddress of string @@ -526,7 +526,7 @@ module AsyncExample = |> Async.RunSynchronously // start them off // ================================================ -// .NET compatability +// .NET compatibility // ================================================ module NetCompatibilityExamples = |