From 19bc07e3509b445641e1010e36438f3da080f62a Mon Sep 17 00:00:00 2001 From: Erb3 <49862976+Erb3@users.noreply.github.com> Date: Thu, 15 Sep 2022 15:06:26 +0200 Subject: [PATCH] Docs: Fix typo in basalt.getVariable.md --- docs/objects/Basalt/getVariable.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/objects/Basalt/getVariable.md b/docs/objects/Basalt/getVariable.md index 6d03c2f..84b6a15 100644 --- a/docs/objects/Basalt/getVariable.md +++ b/docs/objects/Basalt/getVariable.md @@ -16,7 +16,7 @@ basalt.setVariable("abc", function() return 1 end) -basalt.debug(basalt.getVariable("abc")()) -- Should debug log "I got clicked" and debug log 2 (which was returned from the function) +basalt.debug(basalt.getVariable("abc")()) -- Should debug log "I got clicked" and debug log 1 (which was returned from the function) ``` ```xml