Skip to content

Commit 637a8a3

Browse files
style: changed comments
1 parent 398b4c6 commit 637a8a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/src/bridge/merkle/MerkleTreeHistory.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ contract MerkleTreeHistory {
3535
/** @dev Append data into merkle tree.
3636
* `O(log(n))` where
3737
* `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).
38+
* Note: Although each insertion is O(log(n)),
39+
* Complexity of n insertions is O(n).
4040
* @param data The data to insert in the merkle tree.
4141
*/
4242
function append(bytes memory data) public {

0 commit comments

Comments
 (0)