Skip to content
Snippets Groups Projects
Commit 5b2ec064 authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

funclang series3: Fixed typo.

parent 51b482c7
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ let zip l m =
(* Get the minimum of two integers *)
let min a b = if a > b then b else a in
(* Cut off both lists at the length of the shortest list to equal their
* lengts, then use the native 'combine' function *)
* lengths, then use the native 'combine' function *)
let len = min (length l) (length m) in
combine (cut l len) (cut m len)
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment