浏览代码

Update enums.md

abakobo 8 年之前
父节点
当前提交
1f9ee292b7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      modules/monkey/docs/language/enums.md

+ 1 - 1
modules/monkey/docs/language/enums.md

@@ -21,7 +21,7 @@ Enums values are implicitly converted to integral values when assigned to it.
 Local i:UInt=myCustomEnum.b
 ```
 
-You can also create `Enum` variables. An `Enum` variable contains a Uint variable in addition to it's constant members (default value is zero).
+You can also create `Enum` variables. An `Enum` variable contains an Int variable in addition to it's constant members (default value is zero).
 
 Bitwise operators (|,&,~) can be used with Enums variables and Enums members to compute combinations. Such Enums most often contain powers of 2 numbers as members! (1,2,4,8,16,32,64,... and 0 if needed).