diff options
Diffstat (limited to 'src/config_diff.mli')
-rw-r--r-- | src/config_diff.mli | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/config_diff.mli b/src/config_diff.mli index 5aa6d30..d68976b 100644 --- a/src/config_diff.mli +++ b/src/config_diff.mli @@ -1,6 +1,6 @@ -type change = Unchanged | Added | Deleted | Updated of string list +type change = Unchanged | Added | Subtracted | Updated of string list -type diff_func = ?with_children:bool -> string list -> change -> unit +type diff_func = ?recurse:bool -> string list -> change -> unit type diff_trees = { left: Config_tree.t; @@ -14,8 +14,8 @@ exception Incommensurable exception Empty_comparison val make_diff_trees : Config_tree.t -> Config_tree.t -> diff_trees -val clone : ?with_children:bool -> ?set_values:string list -> Config_tree.t -> Config_tree.t -> string list -> Config_tree.t -val decorate_trees : diff_trees -> ?with_children:bool -> string list -> change -> unit +val clone : ?recurse:bool -> ?set_values:string list -> Config_tree.t -> Config_tree.t -> string list -> Config_tree.t +val decorate_trees : diff_trees -> ?recurse:bool -> string list -> change -> unit val compare : string list -> Config_tree.t -> Config_tree.t -> diff_trees val diff_tree : string list -> Config_tree.t -> Config_tree.t -> Config_tree.t |