We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b53d23a commit 1e6842cCopy full SHA for 1e6842c
docs/contracts/inheritance.rst
@@ -548,7 +548,7 @@ Multiple Inheritance and Linearization
548
549
Languages that allow multiple inheritance have to deal with
550
several problems. One is the `Diamond Problem <https://en.wikipedia.org/wiki/Multiple_inheritance#The_diamond_problem>`_.
551
-Solidity is similar to Python in that it uses "`C3 Linearization <https://en.wikipedia.org/wiki/C3_linearization>`_"
+Solidity is similar to Python in that it uses C3 Linearization
552
to force a specific order in the directed acyclic graph (DAG) of base classes. This
553
results in the desirable property of monotonicity but
554
disallows some inheritance graphs. Especially, the order in
0 commit comments