aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/036_enums2.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/036_enums2.zig')
-rw-r--r--exercises/036_enums2.zig4
1 files changed, 3 insertions, 1 deletions
diff --git a/exercises/036_enums2.zig b/exercises/036_enums2.zig
index e6337e9..820a71e 100644
--- a/exercises/036_enums2.zig
+++ b/exercises/036_enums2.zig
@@ -5,7 +5,9 @@
//
// const Stuff = enum(u8){ foo = 16 };
//
-// You can get the integer out with a built-in function:
+// You can get the integer out with a builtin function,
+// @enumToInt(). We'll learn about builtins properly in a later
+// exercise.
//
// var my_stuff: u8 = @enumToInt(Stuff.foo);
//