From 8b25cd2bde9e86389440ca0ba07ee1ea10df70b6 Mon Sep 17 00:00:00 2001 From: Brian Zelip Date: Mon, 3 Feb 2025 13:40:44 -0500 Subject: [PATCH] Fix saveState docs (#883) Co-authored-by: Brian Zelip --- docs/_entries/options/savestate.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/_entries/options/savestate.md b/docs/_entries/options/savestate.md index 4de449898..2b9521e0c 100644 --- a/docs/_entries/options/savestate.md +++ b/docs/_entries/options/savestate.md @@ -11,9 +11,11 @@ For this to work, you should give each node in the tree data an id field: { name: 'node1', id: 123, - childen: [ - name: 'child1', - id: 124 + children: [ + { + name: 'child1', + id: 124 + } ] } {% endhighlight %}