Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/contracts/inheritance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ The way around this is to use ``super``:
If ``Final`` calls a function of ``super``, it does not simply
call this function on one of its base contracts. Rather, it
calls this function on the next base contract in the final
inheritance graph, so it will call ``Base1.emitEvent()`` (note that
inheritance graph, so it will call ``Base2.emitEvent()`` (note that
the final inheritance sequence is -- starting with the most
derived contract: Final, Base2, Base1, Emittable, Owned).
The actual function that is called when using super is
Expand Down