Skip to content

Commit

Permalink
Fix missing natspec space in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSamWitch committed Jul 14, 2024
1 parent a368cce commit d644a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/SamWitchVRF.sol
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ contract SamWitchVRF is ISamWitchVRF, UUPSUpgradeable, OwnableUpgradeable {
}

/// @notice Register a consumer to be able to request random words
///@param consumer An address which is allowed to request random words
/// @param consumer An address which is allowed to request random words
function registerConsumer(address consumer) external onlyOwner {
consumers[consumer] = 1;
emit ConsumerRegistered(consumer);
Expand Down

0 comments on commit d644a0d

Please sign in to comment.