Skip to content

Commit

Permalink
feat: use return variable instead of explicit return
Browse files Browse the repository at this point in the history
  • Loading branch information
xorsal committed Nov 27, 2024
1 parent 6550a32 commit d028cb7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ contract WhitelistAccessModule is Module, IWhitelistAccessModule {

/// @inheritdoc IModule
function moduleName() external pure returns (string memory _moduleName) {
return 'WhitelistAccessModule';
_moduleName = 'WhitelistAccessModule';
}

/// @inheritdoc IAccessModule
Expand Down

0 comments on commit d028cb7

Please sign in to comment.