Docs: Fix typo in basalt.getVariable.md

This commit is contained in:
Erb3
2022-09-15 15:06:26 +02:00
parent 27321380ae
commit 19bc07e350

View File

@@ -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