Skip to content

Commit

Permalink
fixed natspec, removed Typecaster
Browse files Browse the repository at this point in the history
  • Loading branch information
mllwchrry committed Jun 7, 2024
1 parent bd486e3 commit 9adf894
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions contracts/libs/data-structures/AvlTree.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ pragma solidity ^0.8.4;

import {Math} from "@openzeppelin/contracts/utils/math/Math.sol";

import {TypeCaster} from "../utils/TypeCaster.sol";

/**
* @notice AVL Tree module
*
* This library provides implementation of three sets with dynamic key types:
* This library provides implementation of three sets with dynamic `value` types:
* `UintAVL`, `Bytes32AVL` and `Bytes32AVL`.
*
* Each element in the tree contains a bytes32 `value` field to allow storing different types of values
* Each element in the tree has a bytes32 `key` field to allow storing values
* associated with different types of keys
*
* The implementation supports setting custom comparator function
*
Expand Down Expand Up @@ -45,8 +44,6 @@ import {TypeCaster} from "../utils/TypeCaster.sol";
* ```
*/
library AvlTree {
using TypeCaster for *;

/**
*********************
* UintAVL *
Expand Down

0 comments on commit 9adf894

Please sign in to comment.