aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authornakst <>2020-09-15 23:22:19 +0100
committernakst <>2020-09-15 23:22:19 +0100
commitc92860e142b15c8b87fb039471fc125e285f6fb1 (patch)
treec54b031d06ad434bb3b0276dee6e38cffd6f0e50 /examples
parent4cf240ca0538f3221cc469921daf8e12ae757b23 (diff)
update essence platform
Diffstat (limited to 'examples')
-rw-r--r--examples/demo/demo.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin
index fd94f1391..ad89691a5 100644
--- a/examples/demo/demo.odin
+++ b/examples/demo/demo.odin
@@ -712,8 +712,8 @@ union_type :: proc() {
using_statement :: proc() {
fmt.println("\n# using statement");
// using can used to bring entities declared in a scope/namespace
- // into the current scope. This can be applied to import declarations,
- // import names, struct fields, procedure fields, and struct values.
+ // into the current scope. This can be applied to import names, struct
+ // fields, procedure fields, and struct values.
Vector3 :: struct{x, y, z: f32};
{