From da258a58ae85222b0cd09738f23d809283920789 Mon Sep 17 00:00:00 2001 From: Francisco Date: Mon, 3 Jul 2023 12:32:45 -0300 Subject: [PATCH] Update GUIDELINES.md --- GUIDELINES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUIDELINES.md b/GUIDELINES.md index e79f91d3d..aa5ec714b 100644 --- a/GUIDELINES.md +++ b/GUIDELINES.md @@ -140,4 +140,4 @@ In addition to the official Solidity Style Guide we have a number of other conve * It is important to follow a few rules around the use of Solidity overrides to avoid introducing unintended consequences due to the interaction with multiple inheritance: 1. When overriding a function `foo`, always invoke `super.foo`, and pass the same arguments that were received. - 2. Never use `super` for a function other than the one being overridden. + 2. Never use `super` outside of an override, or for a function other than the one being overridden.