Skip to content

Commit

Permalink
Merge pull request #142 from nnsW3/fix-spelling-issues
Browse files Browse the repository at this point in the history
doc: fix RedBlackBinaryTree.sol
  • Loading branch information
MathisGD authored Aug 19, 2024
2 parents 1fe7a80 + 661d842 commit 7f27b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RedBlackBinaryTree.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ library RedBlackBinaryTree {
uint256 parent; // The parent node of the current node.
uint256 leftChild; // The left child of the current node.
uint256 rightChild; // The right child of the current node.
bool red; // Whether the current notde is red or black.
bool red; // Whether the current node is red or black.
address[] keys; // The keys sharing the value of the node.
mapping(address => uint256) keyMap; // Maps the keys to their index in `keys`.
}
Expand Down

0 comments on commit 7f27b7b

Please sign in to comment.