From 2a48d0ee858a4701f556b1a6710b7314c027caab Mon Sep 17 00:00:00 2001 From: Jx <103049321+JxJxxJxJ@users.noreply.github.com> Date: Sun, 5 Jul 2026 01:17:40 -0300 Subject: [PATCH 1/3] typo(demo.odin): in embedded into -> is embedded into --- examples/demo/demo.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index a12217548..7c9abc197 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -670,7 +670,7 @@ union_type :: proc() { { // NOTE(bill): A union can be used to achieve something similar. Instead // of embedding the base data into the derived types, the derived data - // in embedded into the base type. Below is the same example of the + // is embedded into the base type. Below is the same example of the // basic game Entity but using an union. Entity :: struct { From a441b091b744203b32651a7baf6444d66e94f6b5 Mon Sep 17 00:00:00 2001 From: Jx <103049321+JxJxxJxJ@users.noreply.github.com> Date: Sun, 5 Jul 2026 01:24:10 -0300 Subject: [PATCH 2/3] tyoo: can used to -> can be used to --- examples/demo/demo.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index 7c9abc197..02a6cc9e7 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -757,7 +757,7 @@ using_statement :: proc() { // `using` as a struct field modifier remains available always fmt.println("\n# using statement") - // using can used to bring entities declared in a scope/namespace + // using can be used to bring entities declared in a scope/namespace // into the current scope. This can be applied to import names, struct // fields, procedure fields, and struct values. From 448dea1c22fb4582ee0306db61ad5200352ed3cd Mon Sep 17 00:00:00 2001 From: Jx <103049321+JxJxxJxJ@users.noreply.github.com> Date: Sun, 5 Jul 2026 01:26:04 -0300 Subject: [PATCH 3/3] typo: can used -> can be used --- examples/demo/demo.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index 02a6cc9e7..544327686 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -768,7 +768,7 @@ using_statement :: proc() { orientation: quaternion128, } - // It can used like this: + // It can be used like this: foo0 :: proc(entity: ^Entity) { fmt.println(entity.position.x, entity.position.y, entity.position.z) }