summaryrefslogtreecommitdiff
path: root/src/vytree.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/vytree.ml')
-rw-r--r--src/vytree.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vytree.ml b/src/vytree.ml
index b27aea6..74dbe45 100644
--- a/src/vytree.ml
+++ b/src/vytree.ml
@@ -2,7 +2,7 @@ type 'a t = {
name: string;
data: 'a;
children: 'a t list
-}
+} [@@deriving yojson]
type position = Before of string | After of string | End | Default