From 269957b9fb616e43fc4df8f3c13d26b90a5927ce Mon Sep 17 00:00:00 2001 From: Gary Chike Date: Thu, 21 Dec 2023 16:23:00 -0500 Subject: [PATCH] Update demo.odin Appears that 'to' and 'abstract' were inverted. --- examples/demo/demo.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index 417011281..b890d5778 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -541,7 +541,7 @@ struct_type :: proc() { p.x = 1335 fmt.println(v) - // We could write p^.x, however, it is to nice abstract the ability + // We could write p^.x, however, it is nice to abstract the ability // to not explicitly dereference the pointer. This is very useful when // refactoring code to use a pointer rather than a value, and vice versa. } @@ -2594,4 +2594,4 @@ main :: proc() { arbitrary_precision_mathematics() matrix_type() } -} \ No newline at end of file +}