From 2f9ff04958f8aac0ea9083c7700c68ff7bd5a472 Mon Sep 17 00:00:00 2001 From: Edward Grech Date: Tue, 9 Oct 2018 18:12:52 +0200 Subject: [PATCH] Fixed a DocstringParsingError during compilation --- contracts/cryptography/MerkleTrees.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/cryptography/MerkleTrees.sol b/contracts/cryptography/MerkleTrees.sol index 22d680fefec..6e1e772df37 100644 --- a/contracts/cryptography/MerkleTrees.sol +++ b/contracts/cryptography/MerkleTrees.sol @@ -124,7 +124,7 @@ library MerkleTrees { * @notice Verifies a Merkle proof proving the existence of a leaf data * block in a Merkle tree. * @param self The Merkle tree configuration instance. - * @param The root of the Merkle tree to verify the proof against. + * @param root The root of the Merkle tree to verify the proof against. * @param leafDataBlock The leaf data block (unhashed) whose exitence to verify. * @param proof Merkle proof containing sibling hashes on the branch from * the leaf to the root of the Merkle tree.