Przeglądaj źródła

Update enums.md

abakobo 8 lat temu
rodzic
commit
1f9ee292b7
1 zmienionych plików z 1 dodań i 1 usunięć
  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).