Skip to content

Commit

Permalink
Fix natspec comment missing * (#5136)
Browse files Browse the repository at this point in the history
Signed-off-by: Hadrien Croubois <hadrien.croubois@gmail.com>
  • Loading branch information
Amxx committed Oct 2, 2024
1 parent 234427a commit fe7d748
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions contracts/utils/structs/Heap.sol
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ library Heap {
}
}

/*
/**
* @dev Swap node `i` and `j` in the tree.
*/
function _swap(Uint256Heap storage self, uint64 i, uint64 j) private {
Expand Down Expand Up @@ -485,7 +485,7 @@ library Heap {
}
}

/*
/**
* @dev Swap node `i` and `j` in the tree.
*/
function _swap(Uint208Heap storage self, uint24 i, uint24 j) private {
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate/templates/Heap.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ function clear(${struct} storage self) internal {
}
}
/*
/**
* @dev Swap node \`i\` and \`j\` in the tree.
*/
function _swap(${struct} storage self, ${indexType} i, ${indexType} j) private {
Expand Down

0 comments on commit fe7d748

Please sign in to comment.