aboutsummaryrefslogtreecommitdiff
path: root/code
diff options
context:
space:
mode:
Diffstat (limited to 'code')
-rw-r--r--code/demo.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/demo.odin b/code/demo.odin
index 7e330eefa..c5ab3698b 100644
--- a/code/demo.odin
+++ b/code/demo.odin
@@ -253,7 +253,7 @@ explicit_parametric_polymorphic_procedures :: proc() {
// A more complicated example using subtyping
// Something like this could be used in a game
- Vector2 :: struct {x, y: f32};
+ Vector2 :: struct {x, y: f32;};
Entity :: struct {
using position: Vector2;