From c95ea5125d5213ec92029aa9f074d28397a190fb Mon Sep 17 00:00:00 2001 From: Leo Arias Date: Thu, 19 Jul 2018 19:32:34 -0600 Subject: [PATCH] Fix MerkleProof natspec comments (#1083) --- contracts/MerkleProof.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/MerkleProof.sol b/contracts/MerkleProof.sol index 8c902bcc5..26a8b350c 100644 --- a/contracts/MerkleProof.sol +++ b/contracts/MerkleProof.sol @@ -1,15 +1,15 @@ pragma solidity ^0.4.24; -/* +/** * @title MerkleProof * @dev Merkle proof verification based on * https://github.com/ameensol/merkle-tree-solidity/blob/master/src/MerkleProof.sol */ library MerkleProof { - /* + /** * @dev Verifies a Merkle proof proving the existence of a leaf in a Merkle tree. Assumes that each pair of leaves - * and each pair of pre-images is sorted. + * and each pair of pre-images are sorted. * @param _proof Merkle proof containing sibling hashes on the branch from the leaf to the root of the Merkle tree * @param _root Merkle root * @param _leaf Leaf of Merkle tree