Skip to content

Commit

Permalink
remove abstract keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
YouStillAlive committed Feb 12, 2024
1 parent 2c42731 commit 8e558e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/Nameable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ pragma solidity ^0.8.0;

/**
* @title Nameable Helper Contract
* @dev Abstract contract defines functions to retrieve the name and version of a contract.
* @dev Contract defines functions to retrieve the name and version of a contract.
*/
abstract contract Nameable {
contract Nameable {
string private _name;
string private _version;

Expand Down

0 comments on commit 8e558e8

Please sign in to comment.