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.
1 parent 1fe7a80 commit 661d842Copy full SHA for 661d842
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