Skip to content

Commit 7f27b7b

Browse files
authored
Merge pull request #142 from nnsW3/fix-spelling-issues
doc: fix RedBlackBinaryTree.sol
2 parents 1fe7a80 + 661d842 commit 7f27b7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/RedBlackBinaryTree.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ library RedBlackBinaryTree {
1818
uint256 parent; // The parent node of the current node.
1919
uint256 leftChild; // The left child of the current node.
2020
uint256 rightChild; // The right child of the current node.
21-
bool red; // Whether the current notde is red or black.
21+
bool red; // Whether the current node is red or black.
2222
address[] keys; // The keys sharing the value of the node.
2323
mapping(address => uint256) keyMap; // Maps the keys to their index in `keys`.
2424
}

0 commit comments

Comments
 (0)