internal/packing: fix the comment

This commit is contained in:
Hajime Hoshi 2023-02-28 21:45:58 +09:00
parent 6b957063d4
commit 707a44e367

View File

@ -368,7 +368,7 @@ func (p *Page) extend(newWidth int, newHeight int) func() {
p.width = origWidth
p.height = origHeight
// The node address must not be changed, so use the original root node's pointer (#2584).
// As the root node might be modified, recover the content from the cloned content.
// As the root node might be modified, restore the content by the cloned content.
p.root = origRoot
*p.root = origRootCloned
}