Merge pull request #2161 from iamjarvo/fix-typo

Fix typo in ocaml doc
This commit is contained in:
Adam Bard 2016-02-26 14:55:27 -08:00
commit f08db9a8fc

View File

@ -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" ;;