From 118e174c52c31594e867fb586122a6940944a149 Mon Sep 17 00:00:00 2001 From: yzang2019 Date: Wed, 20 Aug 2025 03:36:48 -0700 Subject: [PATCH] fix doc --- docs/node/node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/node/node.md b/docs/node/node.md index 24647fe..fe35e9b 100644 --- a/docs/node/node.md +++ b/docs/node/node.md @@ -15,7 +15,7 @@ type Node struct { hash []byte // hash of above field and leftHash, rightHash leftHash []byte // hash of left child leftNode *Node // pointer to left child - rightHash []byte // hash of right child + rightHash []byte // hash of right child rightNode *Node // pointer to right child persisted bool // persisted to disk }