Fixed exception

This commit is contained in:
Anthony Scemama 2020-10-09 10:04:48 +02:00
parent 7e26b5833a
commit 084417669f
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ let name = "QCaml"
let root =
let rec chop = function
| [] -> raise Not_found
| [] -> []
| x :: _ as l when x = name -> l
| _ :: rest -> chop rest
in