From e5da0986bbc3217c4c82a3a7ca6a9a312599c74c Mon Sep 17 00:00:00 2001 From: "Julian M. Rodriguez" <56316686+julianmrodri@users.noreply.github.com> Date: Wed, 19 Aug 2020 11:23:36 -0300 Subject: [PATCH] Fix code style parameters in Event (#2324) * chore: fix code style parameters in Event * chore: update code style for events --- GUIDELINES.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GUIDELINES.md b/GUIDELINES.md index 2766fec3b..5ea5566e8 100644 --- a/GUIDELINES.md +++ b/GUIDELINES.md @@ -78,9 +78,9 @@ Any exception or additions specific to our project are documented below. represent, and consequently they should be named in past tense. ``` - function _burn(address _who, uint256 _value) internal { - super._burn(_who, _value); - emit TokensBurned(_who, _value); + function _burn(address who, uint256 value) internal { + super._burn(who, value); + emit TokensBurned(who, value); } ```