From d14576e8437ea08d43e0fb378391f34de6e591a8 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Tue, 7 Oct 2025 12:00:59 +0100 Subject: [PATCH] Space to tabs --- core/reflect/doc.odin | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/core/reflect/doc.odin b/core/reflect/doc.odin index 2006f3d3f..92fa9ff52 100644 --- a/core/reflect/doc.odin +++ b/core/reflect/doc.odin @@ -29,20 +29,20 @@ // the current stack frame. // // Example: -// x: int = 123 -// a: any = x -// // equivalent to -// a: any -// a.data = &x -// a.id = typeid_of(type_of(x)) +// x: int = 123 +// a: any = x +// // equivalent to +// a: any +// a.data = &x +// a.id = typeid_of(type_of(x)) // // Example: -// a: any = 123 -// // equivalent to -// a: any -// tmp: int = 123 -// a.data = &tmp -// a.id = typeid_of(type_of(tmp)) +// a: any = 123 +// // equivalent to +// a: any +// tmp: int = 123 +// a.data = &tmp +// a.id = typeid_of(type_of(tmp)) // // // `any` is a topologically-dual to a `union` in terms of its usage. Both support assignments of differing types