From 7144ec8db4e56fde6bf73c19a80bd868826816b5 Mon Sep 17 00:00:00 2001 From: Iskander <36774944+iskanderandrews@users.noreply.github.com> Date: Thu, 20 May 2021 16:01:20 +0200 Subject: [PATCH] Fix whitespace in ERC777 (#2667) --- contracts/token/ERC777/ERC777.sol | 2 +- contracts/token/ERC777/IERC777Sender.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/token/ERC777/ERC777.sol b/contracts/token/ERC777/ERC777.sol index 3bb6b63d4..1743cbdcd 100644 --- a/contracts/token/ERC777/ERC777.sol +++ b/contracts/token/ERC777/ERC777.sol @@ -51,7 +51,7 @@ contract ERC777 is Context, IERC777, IERC20 { mapping(address => mapping(address => bool)) private _revokedDefaultOperators; // ERC20-allowances - mapping (address => mapping (address => uint256)) private _allowances; + mapping(address => mapping(address => uint256)) private _allowances; /** * @dev `defaultOperators` may be an empty array. diff --git a/contracts/token/ERC777/IERC777Sender.sol b/contracts/token/ERC777/IERC777Sender.sol index 137181183..172f69eec 100644 --- a/contracts/token/ERC777/IERC777Sender.sol +++ b/contracts/token/ERC777/IERC777Sender.sol @@ -7,7 +7,7 @@ pragma solidity ^0.8.0; * * {IERC777} Token holders can be notified of operations performed on their * tokens by having a contract implement this interface (contract holders can be - * their own implementer) and registering it on the + * their own implementer) and registering it on the * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry]. * * See {IERC1820Registry} and {ERC1820Implementer}.