docs: udpate description of enums about #1334

This commit is contained in:
Yoichi Hirai 2016-11-09 14:13:57 +01:00
parent eee629652e
commit effca18250
No known key found for this signature in database
GPG Key ID: E7B75D080FCF7992

View File

@ -237,7 +237,8 @@ Enums
=====
Enums are one way to create a user-defined type in Solidity. They are explicitly convertible
to and from all integer types but implicit conversion is not allowed.
to and from all integer types but implicit conversion is not allowed. The explicit conversions
check the value ranges at runtime and a failure causes an exception. Enums needs at least one member.
::