diff --git a/docs/home/Quick-Start.md b/docs/home/Quick-Start.md index 36375c0..583344e 100644 --- a/docs/home/Quick-Start.md +++ b/docs/home/Quick-Start.md @@ -2,7 +2,7 @@ To load the framework into your project, make use of the following code on top of your code. ```lua -local basalt = require("Basalt") +local basalt = require("basalt") ``` It does not matter if you have installed the single file version or the full folder project.
@@ -43,7 +43,7 @@ The true keyword in the end is optional and would simply start BPM immediately. Here is a fully functioning example of Basalt code ```lua -local basalt = require("Basalt") --> Load the Basalt framework +local basalt = require("basalt") --> Load the Basalt framework --> Create the first frame. Please note that Basalt needs at least one active "non-parent" frame to properly supply events --> When Basalt#createFrame makes use of unique identifiers (commonly referred to as UIDs), meaning that the supplied value must be UNIQUE @@ -76,7 +76,7 @@ basalt.autoUpdate() --> Basalt#autoUpdate starts the event listener to detect us ``` If you're like us and strive for succinct and beautiful code, here is a cleaner implementation of the code above: ```lua -local basalt = require("Basalt") +local basalt = require("basalt") local mainFrame = basalt.createFrame("mainFrame"):show() local button = mainFrame --> Basalt returns an instance of the object on most methods, to make use of "call-chaining"