Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
KorbinianK committed Nov 29, 2024
1 parent 3a9d447 commit a30e889
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/nfts/contracts/eventRegister/EventRegister.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ contract EventRegister is AccessControl {
* @dev Represents an event with its associated details.
*/
struct Event {
uint256 id;
///< Unique identifier for the event.
string name;
uint256 id;
///< Name of the event.
bool exists;
string name;
///< Flag indicating whether the event exists.
bool exists;
///< Flag indicating whether registrations are open for the event.
bool registrationOpen;
}
///< Flag indicating whether registrations are open for the event.

/**
* @dev Mapping from event ID to Event details.
Expand Down

0 comments on commit a30e889

Please sign in to comment.