aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-05-30 18:33:43 +0800
committerGitHub <noreply@github.com>2018-05-30 18:33:43 +0800
commitb1aa283122848b571084db8e1036da57d6d98496 (patch)
tree7506a5d5a1ef40d99d3bc519be854930978fbdd0
parent8f04c59046595216e9fffd93435055aa864fbd1f (diff)
parent648bb484ac1dd316113396d5f809c8a37a2826c4 (diff)
downloaddexon-solidity-b1aa283122848b571084db8e1036da57d6d98496.tar.gz
dexon-solidity-b1aa283122848b571084db8e1036da57d6d98496.tar.zst
dexon-solidity-b1aa283122848b571084db8e1036da57d6d98496.zip
Merge pull request #4202 from wjmelements/ordered-list
consistency: use unordered lists for restrictions
-rw-r--r--docs/contracts.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst
index 7f1899fa..a083b9e9 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -1161,11 +1161,11 @@ Interfaces
Interfaces are similar to abstract contracts, but they cannot have any functions implemented. There are further restrictions:
-#. Cannot inherit other contracts or interfaces.
-#. Cannot define constructor.
-#. Cannot define variables.
-#. Cannot define structs.
-#. Cannot define enums.
+- Cannot inherit other contracts or interfaces.
+- Cannot define constructor.
+- Cannot define variables.
+- Cannot define structs.
+- Cannot define enums.
Some of these restrictions might be lifted in the future.