We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1fe7a80 + 661d842 commit 7f27b7bCopy full SHA for 7f27b7b
src/RedBlackBinaryTree.sol
@@ -18,7 +18,7 @@ library RedBlackBinaryTree {
18
uint256 parent; // The parent node of the current node.
19
uint256 leftChild; // The left child of the current node.
20
uint256 rightChild; // The right child of the current node.
21
- bool red; // Whether the current notde is red or black.
+ bool red; // Whether the current node is red or black.
22
address[] keys; // The keys sharing the value of the node.
23
mapping(address => uint256) keyMap; // Maps the keys to their index in `keys`.
24
}
0 commit comments