summaryrefslogtreecommitdiffhomepage
path: root/fsharp.html.markdown
diff options
context:
space:
mode:
authorAmru Eliwat <amru.eliwat@ensighten.com>2015-10-23 23:17:35 -0700
committerAmru Eliwat <amru.eliwat@ensighten.com>2015-10-23 23:17:35 -0700
commit4edbfa9e0394a4abb9301391cdebcc857559a5c7 (patch)
tree57affb1129dc25fc08f56cdbaa9abf8459c171ed /fsharp.html.markdown
parentab67a8f4c29309d7fd5e0b1bd3255fe695beb8cf (diff)
Fixed 'modeling' and 'compatibility' typos
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 76318d7d..a2a87d57 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 =