Skip to content

Commit

Permalink
Fix function documentation in Nonces (#4597)
Browse files Browse the repository at this point in the history
Co-authored-by: Francisco <fg@frang.io>
  • Loading branch information
0xneves and frangio authored Sep 18, 2023
1 parent 618304c commit 6820476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/utils/Nonces.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 6820476

Please sign in to comment.