From 6888be4259b585c7c6869f931df0c941d4713cd0 Mon Sep 17 00:00:00 2001 From: Alessandro Ricottone Date: Sat, 9 Apr 2022 13:17:09 +0200 Subject: [PATCH] Fix typos in comment in Token.sol --- contracts/Token.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/Token.sol b/contracts/Token.sol index b7fd90a..9dbf9ea 100644 --- a/contracts/Token.sol +++ b/contracts/Token.sol @@ -14,8 +14,8 @@ contract Token is ERC20 { address public hub; // the address of the hub this token was deployed through address public immutable owner; // the safe that deployed this token uint256 public inflationOffset; // the amount of seconds until the next inflation step - uint256 public currentIssuance; // issanceRate at the time this token was deployed - bool private manuallyStopped; // true if this token has been stopped by it's owner + uint256 public currentIssuance; // issuance rate at the time this token was deployed + bool private manuallyStopped; // true if this token has been stopped by its owner /// @dev modifier allowing function to be only called through the hub modifier onlyHub() {