From b6ffb9464f566cc481688f61a968acefd821e88b Mon Sep 17 00:00:00 2001 From: alemart Date: Wed, 20 Mar 2019 13:07:57 -0300 Subject: [PATCH] Small changes --- docs/tutorials/properties.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/properties.md b/docs/tutorials/properties.md index 5acc40f7..d7e30f98 100644 --- a/docs/tutorials/properties.md +++ b/docs/tutorials/properties.md @@ -44,7 +44,7 @@ meow! ... ``` -What if an external object could modify the sound of the animal? Trying to access `animal.sound` externally will trigger an error, unless you add the **public** keyword to your variable: +What if an external object could modify the sound of the animal? Trying to access `animal.sound` externally will trigger an error, unless you add the **public** specifier to your variable: ``` object "Animal" @@ -73,7 +73,7 @@ object "Application" } ``` -Since SurgeScript 0.5.3, you may add the **readonly** specifier after the **public** keyword. Doing so disallows the modification of the property by external objects: +Since SurgeScript 0.5.3, you may add the **readonly** modifier after the **public** specifier. Doing so disallows the modification of the property by external objects: ``` object "Animal"