summaryrefslogtreecommitdiff
path: root/src/diff.mli
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2026-08-12 14:54:41 -0500
committerJohn Estabrook <jestabro@vyos.io>2026-08-25 14:10:26 -0500
commitba55ca80346293badcd98c78a38d687c1c5ecd42 (patch)
tree5f7dafd4038ed37610db8262ed6fe68cddb1405f /src/diff.mli
parent07636e49b3a04fdc76ac42bd65df88736c3945f1 (diff)
downloadvyos1x-config-ba55ca80346293badcd98c78a38d687c1c5ecd42.tar.gz
vyos1x-config-ba55ca80346293badcd98c78a38d687c1c5ecd42.zip
T9231: change option name from recurse to descent
The term 'recurse' has other uses; change to the term 'descent', which more aptly describes 'including descendants of a node'.
Diffstat (limited to 'src/diff.mli')
-rw-r--r--src/diff.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diff.mli b/src/diff.mli
index 41ae523..1b021bd 100644
--- a/src/diff.mli
+++ b/src/diff.mli
@@ -5,7 +5,7 @@ exception Empty_comparison
module type Place = sig
type t
- val diff_func : ?recurse:bool -> string list -> t -> change -> t
+ val diff_func : ?descent:bool -> string list -> t -> change -> t
end
module Diff : functor (P: Place) -> sig