From 408862dc1b930bd2e4422bde4abbe9d28959c6ed Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Tue, 1 Dec 2015 23:16:04 +0100 Subject: [PATCH] Exists -> exist --- ocaml/qp_edit.ml | 2 +- ocaml/qp_print.ml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ocaml/qp_edit.ml b/ocaml/qp_edit.ml index f6a2ac9c..24a61b78 100644 --- a/ocaml/qp_edit.ml +++ b/ocaml/qp_edit.ml @@ -169,7 +169,7 @@ let run check_only ezfio_filename = (* Open EZFIO *) if (not (Sys.file_exists_exn ezfio_filename)) then - failwith (ezfio_filename^" does not exists"); + failwith (ezfio_filename^" does not exist"); Ezfio.set_file ezfio_filename; diff --git a/ocaml/qp_print.ml b/ocaml/qp_print.ml index 4edb2f8e..ec584066 100644 --- a/ocaml/qp_print.ml +++ b/ocaml/qp_print.ml @@ -41,7 +41,7 @@ let run_i ~action ezfio_filename = let action = create_i_action action in if (not (Sys.file_exists_exn ezfio_filename)) then - failwith (ezfio_filename^" does not exists"); + failwith (ezfio_filename^" does not exist"); Ezfio.set_file ezfio_filename; @@ -133,7 +133,7 @@ let run_i ~action ezfio_filename = let run_o ~action ezfio_filename = if (not (Sys.file_exists_exn ezfio_filename)) then - failwith (ezfio_filename^" does not exists"); + failwith (ezfio_filename^" does not exist"); (* Open EZFIO *) Ezfio.set_file ezfio_filename;