my ziglings
0

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request 'fixed language changes in @typeInfo' (#13) from fix_i12 into main

Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/13

Chris Boesch (Oct 8, 2023, 4:56 PM UTC) e314608f 88a8e064

+2 -2
+2 -2
exercises/065_builtins2.zig
··· 24 24 // Returns the innermost struct, enum, or union that a function 25 25 // call is inside. 26 26 // 27 - // 2. @typeInfo(comptime T: type) @import("std").builtin.TypeInfo 27 + // 2. @typeInfo(comptime T: type) @import("std").builtin.Type 28 28 // 29 - // Returns information about any type in a TypeInfo union which 29 + // Returns information about any type in a data structure which 30 30 // will contain different information depending on which type 31 31 // you're examining. 32 32 //