소스 검색

Fix code style parameters in Event (#2324)

* chore: fix code style parameters in Event

* chore: update code style for events
Julian M. Rodriguez 5 년 전
부모
커밋
e5da0986bb
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      GUIDELINES.md

+ 3 - 3
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);
     }
     ```