aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Ward <chriswhward@gmail.com>2018-09-30 22:00:50 +0800
committerChris Ward <chriswhward@gmail.com>2018-09-30 22:00:50 +0800
commitfb7380a92d838123c5653900a4e3127d62da0241 (patch)
tree4f2e6ba5b6e94741bf18793605c99f234a7af056
parentc4b5101b9d8337069c495b95b04a420e2665aa2d (diff)
downloaddexon-solidity-fb7380a92d838123c5653900a4e3127d62da0241.tar
dexon-solidity-fb7380a92d838123c5653900a4e3127d62da0241.tar.gz
dexon-solidity-fb7380a92d838123c5653900a4e3127d62da0241.tar.bz2
dexon-solidity-fb7380a92d838123c5653900a4e3127d62da0241.tar.lz
dexon-solidity-fb7380a92d838123c5653900a4e3127d62da0241.tar.xz
dexon-solidity-fb7380a92d838123c5653900a4e3127d62da0241.tar.zst
dexon-solidity-fb7380a92d838123c5653900a4e3127d62da0241.zip
Fix issues introduced from PR #5043
-rw-r--r--docs/contracts.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst
index 315d1815..93f54e4a 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -1131,7 +1131,7 @@ Multiple Inheritance and Linearization
Languages that allow multiple inheritance have to deal with
several problems. One is the `Diamond Problem <https://en.wikipedia.org/wiki/Multiple_inheritance#The_diamond_problem>`_.
Solidity is similar to Python in that it uses "`C3 Linearization <https://en.wikipedia.org/wiki/C3_linearization>`_"
-to force a specific order in the directed acyclic graph of base classes. This
+to force a specific order in the directed acyclic graph (DAG) of base classes. This
results in the desirable property of monotonicity but
disallows some inheritance graphs. Especially, the order in
which the base classes are given in the ``is`` directive is
@@ -1295,7 +1295,7 @@ contract, and a regular ``JUMP`` call will be used instead of a ``DELEGATECALL``
.. index:: using for, set
-The following example illustrates how to use libraries (butmanual method
+The following example illustrates how to use libraries (but manual method
be sure to check out :ref:`using for <using-for>` for a
more advanced example to implement a set).