diff options
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r-- | docs/contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index fcc26b24..273ea43a 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -939,7 +939,7 @@ derived override, but this function will bypass function kill() public { /* do cleanup 2 */ super.kill(); } } - contract Final is Base2, Base1 { + contract Final is Base1, Base2 { } If ``Base1`` calls a function of ``super``, it does not simply |