From 3935b907d40c9a23b04b721c2f61758df1caf722 Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Tue, 13 Jul 2021 17:10:54 -0300 Subject: [PATCH] Fix NatSpec comment syntax --- contracts/metatx/ERC2771Context.sol | 2 +- contracts/metatx/MinimalForwarder.sol | 2 +- contracts/utils/Context.sol | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/metatx/ERC2771Context.sol b/contracts/metatx/ERC2771Context.sol index a6e213239..d6b50a28a 100644 --- a/contracts/metatx/ERC2771Context.sol +++ b/contracts/metatx/ERC2771Context.sol @@ -4,7 +4,7 @@ pragma solidity ^0.8.0; import "../utils/Context.sol"; -/* +/** * @dev Context variant with ERC2771 support. */ abstract contract ERC2771Context is Context { diff --git a/contracts/metatx/MinimalForwarder.sol b/contracts/metatx/MinimalForwarder.sol index 340e88748..816ba673f 100644 --- a/contracts/metatx/MinimalForwarder.sol +++ b/contracts/metatx/MinimalForwarder.sol @@ -5,7 +5,7 @@ pragma solidity ^0.8.0; import "../utils/cryptography/ECDSA.sol"; import "../utils/cryptography/draft-EIP712.sol"; -/* +/** * @dev Simple minimal forwarder to be used together with an ERC2771 compatible contract. See {ERC2771Context}. */ contract MinimalForwarder is EIP712 { diff --git a/contracts/utils/Context.sol b/contracts/utils/Context.sol index eb48cb193..d03dc5f45 100644 --- a/contracts/utils/Context.sol +++ b/contracts/utils/Context.sol @@ -2,7 +2,7 @@ pragma solidity ^0.8.0; -/* +/** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct