Merge pull request #4202 from wjmelements/ordered-list

consistency: use unordered lists for restrictions
This commit is contained in:
chriseth 2018-05-30 12:33:43 +02:00 committed by GitHub
commit b1aa283122
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.