Merge pull request 'Corrects the description of the new @typeInfo().@"struct".fields' (#157) from p_struct_typeinfo into main

Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/157
This commit is contained in:
Chris Boesch 2024-09-07 17:25:35 +00:00
commit 3dc79ca9c3

View file

@ -75,11 +75,11 @@ fn printTuple(tuple: anytype) void {
// with fields specific to that type.
//
// The list of a struct type's fields can be found in
// TypeInfo's Struct.fields.
// TypeInfo's @"struct".fields.
//
// Example:
//
// @typeInfo(Circle).Struct.fields
// @typeInfo(Circle).@"struct".fields
//
// This will be an array of StructFields.
const fields = ???;