From 425af0d9cd82ac2dcfac9a27c3125eac09253d7f Mon Sep 17 00:00:00 2001 From: sovdee <10354869+sovdeeth@users.noreply.github.com> Date: Mon, 19 Jan 2026 11:22:17 -0800 Subject: [PATCH] Update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0f1ad56..f947d64 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The expression may use `this` to refer to the struct being converted. Multiple c Creating a struct involves a simple expression: ``` -set {_a} to a message struct +set {_a} to a message struct instance ``` `{_a}` is now a new instance of the Message template, with contents and sender unset and timestamp set to the date the struct was created. Fields can be accessed and modified with the field access expression: ``` @@ -32,7 +32,7 @@ reset {_a}->timestamp ``` Structs can also be created with initial values: ``` -set {_a} to a message struct: +set {_a} to a message struct instance: sender: player contents: "hello world" ```