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 398b4c6 commit 637a8a3Copy full SHA for 637a8a3
contracts/src/bridge/merkle/MerkleTreeHistory.sol
@@ -35,8 +35,8 @@ contract MerkleTreeHistory {
35
/** @dev Append data into merkle tree.
36
* `O(log(n))` where
37
* `n` is the number of leaves.
38
- * Note: Although each insertion is O(log_2(n)),
39
- * Total complexity of n insertions is O(n).
+ * Note: Although each insertion is O(log(n)),
+ * Complexity of n insertions is O(n).
40
* @param data The data to insert in the merkle tree.
41
*/
42
function append(bytes memory data) public {
0 commit comments