docs: udpate description of enums about #1334

This commit is contained in:
Yoichi Hirai
2016-11-11 17:48:03 +01:00
parent eee629652e
commit effca18250
+2 -1
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.
::