From 6669e01b9625ff3b1354df68d2cbba12d4a913c5 Mon Sep 17 00:00:00 2001
From: Robert Jelic <36573031+NoryiE@users.noreply.github.com>
Date: Fri, 6 May 2022 18:22:05 +0200
Subject: [PATCH] Updated Basalt (markdown)
---
Basalt.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Basalt.md b/Basalt.md
index 375177c..a213f87 100644
--- a/Basalt.md
+++ b/Basalt.md
@@ -44,7 +44,7 @@ basalt.debug(basalt.getActiveFrame():getName()) -- returns myFirstFrame
**returns:** frame object
## basalt.autoUpdate
-starts the logic, draw and event handler until you use basalt.stopUpdate
+starts the draw and event handler until you use basalt.stopUpdate
````lua
local mainFrame = basalt.createFrame("myFirstFrame"):show()
basalt.autoUpdate()
@@ -53,7 +53,7 @@ basalt.autoUpdate()
**returns:**-
## basalt.update
-calls the basalt.update method once
+calls the draw and event handler method once
````lua
local mainFrame = basalt.createFrame("myFirstFrame"):show()
basalt.autoUpdate()
@@ -62,7 +62,7 @@ basalt.autoUpdate()
**returns:**-
## basalt.stopUpdate
-stops the logic, draw and event handler
+stops the draw and event handler
````lua
basalt.stopUpdate()
````