diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-04-22 17:17:25 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-04-22 17:17:25 -0400 |
commit | 5a7c4d07793e7193911372ee34195dfc64dd7e70 (patch) | |
tree | d499e74aaa005ba5886576a8ffa78547bc27c23d /exercises/065_builtins2.zig | |
parent | 8859f7a1fe8215853b56c3db3a2d043ae860d405 (diff) | |
download | ziglings-5a7c4d07793e7193911372ee34195dfc64dd7e70.tar.gz ziglings-5a7c4d07793e7193911372ee34195dfc64dd7e70.tar.bz2 ziglings-5a7c4d07793e7193911372ee34195dfc64dd7e70.tar.xz ziglings-5a7c4d07793e7193911372ee34195dfc64dd7e70.zip |
add 071 comptime 6 inline for
Diffstat (limited to 'exercises/065_builtins2.zig')
-rw-r--r-- | exercises/065_builtins2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/065_builtins2.zig b/exercises/065_builtins2.zig index 9667b76..ef41797 100644 --- a/exercises/065_builtins2.zig +++ b/exercises/065_builtins2.zig @@ -90,7 +90,7 @@ pub fn main() void { // A StructFields array const fields = @typeInfo(Narcissus).Struct.fields; - // 'fields' is an array of StructFields. Here's the declaration: + // 'fields' is a slice of StructFields. Here's the declaration: // // pub const StructField = struct { // name: []const u8, |