diff options
author | Adam Bard <github@adambard.com> | 2016-02-26 14:55:27 -0800 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2016-02-26 14:55:27 -0800 |
commit | f08db9a8fceba784e1370efd79e1900e0f1ea621 (patch) | |
tree | cf6123028d411ead2d4903997bc8a2497d07ef3b | |
parent | 3e429e86b2a98e34131f5a0e743ed90f4d30fda6 (diff) | |
parent | 95bb627df8d5adebcb99f02088a8fc7acee94255 (diff) |
Merge pull request #2161 from iamjarvo/fix-typo
Fix typo in ocaml doc
-rw-r--r-- | ocaml.html.markdown | 2 |
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" ;; |