Author: Ralf Treinen <treinen@debian.org>
Description: Fix some occurrences of "does not exists"
Debian-Bug: #869846

Index: dose3/algo/diagnostic.ml
===================================================================
--- dose3.orig/algo/diagnostic.ml	2018-04-21 16:59:30.990123686 +0200
+++ dose3/algo/diagnostic.ml	2018-04-21 17:01:51.702839765 +0200
@@ -262,8 +262,8 @@
               ) [] vpkgs
             in
             (* we add this node if a package depends disjuctively on one
-               or more packages that exists in the repository, but are not
-               installable, and one that do not exists in the repository. For
+               or more packages that exist in the repository, but are not
+               installable, and one that do not exist in the repository. For
                the latter we add a missing node to the graph. *)
             if List.length missingvpkgs > 0 then begin
               let vp = G.V.create (PkgV.Missing missingvpkgs) in incr c;
Index: dose3/common/cudfAdd.mli
===================================================================
--- dose3.orig/common/cudfAdd.mli	2018-04-19 21:27:06.637292954 +0200
+++ dose3/common/cudfAdd.mli	2018-04-21 17:02:23.574994759 +0200
@@ -123,7 +123,7 @@
 val add_properties : Cudf.preamble -> Cudf_types.typedecl -> Cudf.preamble
 
 (** return the value of the requested property. 
- * emit a warning and raise Not_found if the property does not exists *)
+ * emit a warning and raise Not_found if the property does not exist *)
 val get_property : string -> Cudf.package -> string
 
 (** Returns true if the package is essential, that is the cudf package has
Index: dose3/common/input.ml
===================================================================
--- dose3.orig/common/input.ml	2018-04-21 16:59:31.006123776 +0200
+++ dose3/common/input.ml	2018-04-21 17:02:45.287101116 +0200
@@ -71,7 +71,7 @@
 
 let open_file file =
   if not (Sys.file_exists file) then
-    fatal "Input file %s does not exists." file
+    fatal "Input file %s does not exist." file
   else if (Unix.stat file).Unix.st_size = 0 then (
     warning "Input file %s is empty" file;
     raise File_empty)
