summaryrefslogtreecommitdiffhomepage
path: root/ocaml.html.markdown
diff options
context:
space:
mode:
authorchenbridge <chenbridge@Bridge-Mac.local>2016-02-29 09:35:27 +0800
committerchenbridge <chenbridge@Bridge-Mac.local>2016-02-29 09:35:27 +0800
commit447e80f31d06b5976864ad19b7c7cde71dc64c9c (patch)
tree3e1c32153d012a56111542e277a725ff798a76c3 /ocaml.html.markdown
parentfbe569a5252d88e0b24ae05c1faa903a4da3d138 (diff)
parent326fa410fae93dc0f4767444759042515d7c28d5 (diff)
Merge remote-tracking branch 'adambard/master'
Diffstat (limited to 'ocaml.html.markdown')
-rw-r--r--ocaml.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/ocaml.html.markdown b/ocaml.html.markdown
index 8faab297..a346550c 100644
--- a/ocaml.html.markdown
+++ b/ocaml.html.markdown
@@ -104,7 +104,7 @@ let fact_4 = factorial (5-1) ;;
let sqr2 = sqr (-2) ;;
(* Every function must have at least one argument.
- Since some funcions naturally don't take any arguments, there's
+ Since some functions naturally don't take any arguments, there's
"unit" type for it that has the only one value written as "()" *)
let print_hello () = print_endline "hello world" ;;