From 36d8170d7c2d054242008b6e3b7dd16cc8926023 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sun, 8 Oct 2023 18:51:22 +0200 Subject: [PATCH] fixed language changes in @typeInfo --- exercises/065_builtins2.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/065_builtins2.zig b/exercises/065_builtins2.zig index 7d9939a..283aca5 100644 --- a/exercises/065_builtins2.zig +++ b/exercises/065_builtins2.zig @@ -24,9 +24,9 @@ // Returns the innermost struct, enum, or union that a function // call is inside. // -// 2. @typeInfo(comptime T: type) @import("std").builtin.TypeInfo +// 2. @typeInfo(comptime T: type) @import("std").builtin.Type // -// Returns information about any type in a TypeInfo union which +// Returns information about any type in a data structure which // will contain different information depending on which type // you're examining. //