diff options
author | Daniil Baturin <daniil@baturin.org> | 2014-09-10 21:40:47 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2014-09-10 21:40:47 +0700 |
commit | b2cf2228b3843a2015b3badbb550faf47fcb0404 (patch) | |
tree | c4d057ed1e0b8892101e6b1c59ebb959c6095b83 /ocaml.html.markdown | |
parent | 9f3bff9ce85ea95073f8a90397195c841d9fce23 (diff) |
One more fix in the OCaml tutorial.
Diffstat (limited to 'ocaml.html.markdown')
-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 3c9593d4..fd7ca36e 100644 --- a/ocaml.html.markdown +++ b/ocaml.html.markdown @@ -217,7 +217,7 @@ type number = Int of int | Float of float ;; type point2d = Point of float * float ;; let my_point = Point (2.0, 3.0) ;; -(* Types can be parametrized, like in this type for "list of lists +(* Types can be parameterized, like in this type for "list of lists of anything". 'a can be substituted with any type. *) type 'a list_of_lists = 'a list list ;; type int_list_list = int list_of_lists ;; |