Browse Source

Space to tabs

gingerBill 5 days ago
parent
commit
d14576e843
1 changed files with 12 additions and 12 deletions
  1. 12 12
      core/reflect/doc.odin

+ 12 - 12
core/reflect/doc.odin

@@ -29,20 +29,20 @@
 // the current stack frame.
 // the current stack frame.
 //
 //
 // Example:
 // 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:
 // 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
 // `any` is a topologically-dual to a `union` in terms of its usage. Both support assignments of differing types