From e869b37d0b469e275b1d1f87436982a4fec1a91b Mon Sep 17 00:00:00 2001 From: Andrew B Coathup <28278242+abcoathup@users.noreply.github.com> Date: Fri, 26 Jul 2019 23:04:45 +1000 Subject: [PATCH] Update CODE_STYLE.md (#1842) Add: Interface names should have a capital I prefix. --- CODE_STYLE.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CODE_STYLE.md b/CODE_STYLE.md index 0c00a15a5..a5beeb971 100644 --- a/CODE_STYLE.md +++ b/CODE_STYLE.md @@ -61,3 +61,9 @@ Any exception or additions specific to our project are documented below. Some standards (e.g. ERC20) use present tense, and in those cases the standard specification prevails. + +* Interface names should have a capital I prefix. + + ``` + interface IERC777 { + ```