Fix function documentation in Nonces (#4597)

Co-authored-by: Francisco <fg@frang.io>
This commit is contained in:
Ownerless Inc
2023-09-18 11:30:25 -03:00
committed by GitHub
parent 618304cc01
commit 68204769a1

View File

@ -13,7 +13,7 @@ abstract contract Nonces {
mapping(address account => uint256) private _nonces;
/**
* @dev Returns an the next unused nonce for an address.
* @dev Returns the next unused nonce for an address.
*/
function nonces(address owner) public view virtual returns (uint256) {
return _nonces[owner];