summaryrefslogtreecommitdiffhomepage
path: root/fsharp.html.markdown
diff options
context:
space:
mode:
authorJacob Ward <jacobward1898@gmail.com>2015-11-02 08:12:54 -0700
committerJacob Ward <jacobward1898@gmail.com>2015-11-02 08:12:54 -0700
commit861ee642234d360e9a257e4b4d4ecd44449c81ca (patch)
tree4b505edfba4aa262b3a53fdcbf448cee0ebfc93e /fsharp.html.markdown
parentdb4e212602121c5d84fc987d47054dbbbe21b1b0 (diff)
parent140f6c07bc9580fec741e5cac77c5a4e22144c39 (diff)
Merge remote-tracking branch 'adambard/master'
Diffstat (limited to 'fsharp.html.markdown')
-rw-r--r--fsharp.html.markdown6
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 =