summaryrefslogtreecommitdiffhomepage
path: root/standard-ml.html.markdown
diff options
context:
space:
mode:
authorAdam <adam@adambard.com>2013-12-11 08:40:07 -0800
committerAdam <adam@adambard.com>2013-12-11 08:40:07 -0800
commite26c663f75d45cf8495494a51e95c8abebda3167 (patch)
treeadde079cbb3e91723bb6ef8349ed68d37042b13b /standard-ml.html.markdown
parentf9cff00e891225be0a3effc51b3261d5a10f60fb (diff)
Fix standard ml
Diffstat (limited to 'standard-ml.html.markdown')
-rw-r--r--standard-ml.html.markdown5
1 files changed, 2 insertions, 3 deletions
diff --git a/standard-ml.html.markdown b/standard-ml.html.markdown
index 849ba0f5..bd26709c 100644
--- a/standard-ml.html.markdown
+++ b/standard-ml.html.markdown
@@ -1,9 +1,8 @@
---
-language: Standard ML
+language: "Standard ML"
contributors:
- ["Simon Shine", "http://shine.eu.org/"]
- ["David Pedersen", "http://lonelyproton.com/"]
-lang: en-en
---
Standard ML is a functional programming language with type inference and some
@@ -12,7 +11,7 @@ pattern matching, type inference (guessing the right types but never allowing
implicit type conversion). If you have an imperative background, not being able
to update variables can feel severely inhibiting.
-```sml
+```ocaml
(* Comments in Standard ML begin with (* and end with *). Comments can be
nested which means that all (* tags must end with a *) tag. This comment
contains two nested comments. *)